2024-03-22 20:10:17 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2024-04-04 21:21:21 +04:00
|
|
|
|
<TargetFramework>net8.0-windows7.0</TargetFramework>
|
2024-03-22 20:10:17 +04:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-04-04 21:21:21 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.3">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.3">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-03-22 20:10:17 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
|
2024-04-18 23:41:30 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
|
2024-03-22 20:10:17 +04:00
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\PrecastConcretePlantBusinessLogic\PrecastConcretePlantBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\PrecastConcretePlantContracts\PrecastConcretePlantContracts.csproj" />
|
2024-05-17 00:03:34 +04:00
|
|
|
|
<ProjectReference Include="..\PrecastConcretePlantDataBaseImplement\PrecastConcretePlantDataBaseImplement.csproj" />
|
2024-03-23 12:04:42 +04:00
|
|
|
|
<ProjectReference Include="..\PrecastConcretePlantFileImplement\PrecastConcretePlantFileImplement.csproj" />
|
2024-03-22 20:10:17 +04:00
|
|
|
|
<ProjectReference Include="..\PrecastConcretePlantListImplement\PrecastConcretePlantListImplement.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|