68 lines
2.1 KiB
XML
68 lines
2.1 KiB
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="7.0.5">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\BusinessLogic\BusinessLogic.csproj" />
|
|
<ProjectReference Include="..\MongoDB\MongoDB.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="FormReportCompanies.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormReportHumans.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormVoyage.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormRoute.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormRoutes.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormPlace.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormPlaces.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormStatuses.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormStatus.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormCompany.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormHuman.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormCompanies.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
<Compile Update="FormHumans.cs">
|
|
<SubType>Form</SubType>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
</Project> |