DB/TransportGuide/TransportGuide.csproj

25 lines
969 B
XML
Raw Normal View History

2023-04-22 17:57:39 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
2023-04-22 21:01:25 +04:00
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2023-05-05 14:16:56 +04:00
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.3" />
2023-05-04 21:53:02 +04:00
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TransportGuideDatabaseImplements\TransportGuideDatabaseImplements.csproj" />
2023-04-22 21:01:25 +04:00
</ItemGroup>
2023-04-22 17:57:39 +04:00
</Project>