2023-03-27 23:58:06 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-03-28 17:32:55 +04:00
|
|
|
|
<ItemGroup>
|
2023-03-28 21:24:52 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.4">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2023-03-29 22:56:00 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.4">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2023-03-28 17:32:55 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
|
2023-03-29 22:56:00 +04:00
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.3" />
|
2023-03-30 14:06:44 +04:00
|
|
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
|
2023-03-28 17:32:55 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\BeautySaloonBusinessLogic\BeautySaloonBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\BeautySaloonContracts\BeautySaloonContracts.csproj" />
|
2023-03-28 21:24:52 +04:00
|
|
|
|
<ProjectReference Include="..\BeautySaloonDatabaseImplement\BeautySaloonDatabaseImplement.csproj" />
|
2023-03-28 17:32:55 +04:00
|
|
|
|
<ProjectReference Include="..\BeautySaloonDataModels\BeautySaloonDataModels.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-03-27 23:58:06 +04:00
|
|
|
|
</Project>
|