25 lines
924 B
XML
25 lines
924 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.29">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SYBDBusinessLogic\SYBDBusinessLogic.csproj" />
|
|
<ProjectReference Include="..\SYBDDatabaseImplement\SYBDDatabaseImplement.csproj" />
|
|
<ProjectReference Include="..\SYBDMongoDB\SYBDMongoDB.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |