2024-11-12 12:21:29 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<UseWPF>true</UseWPF>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-11-13 14:41:01 +04:00
|
|
|
|
<ItemGroup>
|
2024-12-08 17:27:48 +04:00
|
|
|
|
<PackageReference Include="DocumentFormat.OpenXml" Version="3.2.0" />
|
2024-11-26 21:24:08 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.10" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
|
2024-11-13 14:41:01 +04:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-11-26 21:24:08 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.10">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.1" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.10" />
|
|
|
|
|
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.6.1" />
|
2024-11-13 14:41:01 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\EmployeeManagmentBusinessLogic\EmployeeManagmentBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\EmployeeManagmentContracts\EmployeeManagmentContracts.csproj" />
|
2024-11-26 21:24:08 +04:00
|
|
|
|
<ProjectReference Include="..\EmployeeManagmentDataBaseImplement\EmployeeManagmentDataBaseImplement.csproj" />
|
|
|
|
|
<ProjectReference Include="..\EmployeeManagmentDataModels\EmployeeManagmentDataModels.csproj" />
|
2024-11-13 14:41:01 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-11-12 12:21:29 +04:00
|
|
|
|
</Project>
|