2024-04-17 10:13:26 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2024-05-11 13:35:30 +04:00
|
|
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
2024-04-17 10:13:26 +04:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-05-11 13:35:30 +04:00
|
|
|
|
<PackageReference Include="Accelergreat.EntityFramework.PostgreSql" Version="2.2.7" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.3">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.3">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-04-17 10:13:26 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.1" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\AutomobilePlantBusinessLogic\AutomobilePlantBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\AutomobilePlantContracts\AutomobilePlantContracts.csproj" />
|
2024-05-11 13:35:30 +04:00
|
|
|
|
<ProjectReference Include="..\AutomobilePlantDatabaseImplement\AutomobilePlantDatabaseImplement.csproj" />
|
2024-04-17 10:13:26 +04:00
|
|
|
|
<ProjectReference Include="..\AutomobilePlantDataModels\AutomobilePlantDataModels.csproj" />
|
2024-04-17 10:17:17 +04:00
|
|
|
|
<ProjectReference Include="..\AutomobilePlantFileImplement\AutomobilePlantFileImplement.csproj" />
|
2024-04-17 10:13:26 +04:00
|
|
|
|
<ProjectReference Include="..\AutomobilePlantListImplements\AutomobilePlantListImplements.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|