24 lines
1.0 KiB
XML
24 lines
1.0 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.Extensions.DependencyInjection" Version="8.0.0" />
|
|||
|
<PackageReference Include="NLog" Version="5.2.8" />
|
|||
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\..\ShipyardContracts\ShipyardContracts\ShipyardContracts.csproj" />
|
|||
|
<ProjectReference Include="..\..\ShipyardDataModels\ShipyardDataModels\ShipyardDataModels.csproj" />
|
|||
|
<ProjectReference Include="..\..\ShipyardBusinessLogic\ShipyardBusinessLogic\ShipyardBusinessLogic.csproj" />
|
|||
|
<ProjectReference Include="..\..\ShipyardListImplement\ShipyardListImplement\ShipyardListImplement.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|