22 lines
745 B
XML
Raw Permalink Normal View History

2024-03-05 07:44:51 +04:00
<Project Sdk="Microsoft.NET.Sdk">
2024-02-08 00:52:37 +04:00
<PropertyGroup>
2024-03-05 07:44:51 +04:00
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
2024-02-08 00:52:37 +04:00
</PropertyGroup>
2024-03-05 07:44:51 +04:00
<ItemGroup>
2024-05-12 13:03:07 +04:00
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.1" />
2024-03-05 07:44:51 +04:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PrecastConcretePlantBusinessLogic\PrecastConcretePlantBusinessLogic.csproj" />
<ProjectReference Include="..\PrecastConcretePlantListImplement\PrecastConcretePlantListImplement.csproj" />
</ItemGroup>
2024-02-08 00:52:37 +04:00
</Project>