22 lines
806 B
XML
22 lines
806 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.Extensions.Logging" Version="8.0.0" />
|
|||
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\PlumbingRepairBusinessLogic\PlumbingRepairBusinessLogic.csproj" />
|
|||
|
<ProjectReference Include="..\PlumbingRepairContracts\PlumbingRepairContracts.csproj" />
|
|||
|
<ProjectReference Include="..\PlumbingRepairListImplement\PlumbingRepairListImplement.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|