21 lines
618 B
XML
Raw Permalink Normal View History

2024-06-21 23:08:49 +04:00
<Project Sdk="Microsoft.NET.Sdk">
2024-05-11 11:52:27 +04:00
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2024-05-11 11:59:11 +04:00
<Platforms>AnyCPU;x64;x86</Platforms>
2024-05-11 11:52:27 +04:00
</PropertyGroup>
2024-06-21 23:08:49 +04:00
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="Unity" Version="5.11.10" />
<PackageReference Include="Unity.Microsoft.Logging" Version="5.11.1" />
</ItemGroup>
2024-05-11 11:52:27 +04:00
<ItemGroup>
<ProjectReference Include="..\SecuritySystemDataModels\SecuritySystemDataModels.csproj" />
</ItemGroup>
</Project>