PIbd-23_Razin_A.A._Security.../SecuritySystem/SecuritySystemView/SecuritySystemView.csproj

41 lines
2.1 KiB
XML
Raw Normal View History

2024-05-11 11:52:27 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
2024-05-11 11:57:45 +04:00
<TargetFramework>net8.0-windows</TargetFramework>
2024-05-11 11:52:27 +04:00
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Remove="nlog.config" />
</ItemGroup>
<ItemGroup>
<Content Include="nlog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
2024-05-11 11:57:45 +04:00
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
2024-05-11 11:52:27 +04:00
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
2024-05-11 11:57:45 +04:00
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
2024-05-11 11:52:27 +04:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SecuritySystemBusinessLogic\SecuritySystemBusinessLogic.csproj" />
<ProjectReference Include="..\SecuritySystemContracts\SecuritySystemContracts.csproj" />
2024-05-11 11:57:45 +04:00
<ProjectReference Include="..\SecuritySystemDatabaseImplement\SecuritySystemDatabaseImplement.csproj" />
2024-05-11 11:52:27 +04:00
<ProjectReference Include="..\SecuritySystemDataModels\SecuritySystemDataModels.csproj" />
2024-05-11 11:54:56 +04:00
<ProjectReference Include="..\SecuritySystemFileImplement\SecuritySystemFileImplement.csproj" />
2024-05-11 11:52:27 +04:00
<ProjectReference Include="..\SecuritySystemListImplement\SecuritySystemListImplement.csproj" />
</ItemGroup>
</Project>