2024-09-19 00:39:30 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2024-10-30 01:08:12 +04:00
|
|
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
2024-09-19 00:39:30 +04:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-10-30 01:08:12 +04:00
|
|
|
|
<PackageReference Include="ComponentProgramming" Version="1.0.0" />
|
|
|
|
|
<PackageReference Include="Components" Version="1.0.0" />
|
|
|
|
|
<PackageReference Include="COP_V6" Version="1.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.14" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\BusinessLogics\BusinessLogics.csproj" />
|
2024-09-19 00:39:30 +04:00
|
|
|
|
<ProjectReference Include="..\ComponentProgramming\ComponentProgramming.csproj" />
|
2024-10-30 01:08:12 +04:00
|
|
|
|
<ProjectReference Include="..\Contracts\Contracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\DatabaseImplement\DatabaseImplement.csproj" />
|
|
|
|
|
<ProjectReference Include="..\DataModels\DataModels.csproj" />
|
2024-09-19 00:39:30 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|