PIbd-23-Volkov-N.A.-Compute.../ComputersShop/ComputersShopDataBaseImplement/ComputersShopDataBaseImplement.csproj

27 lines
1.0 KiB
XML
Raw Normal View History

2024-03-04 22:33:22 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ComputersShopContracts\ComputersShopContracts.csproj" />
<ProjectReference Include="..\СomputersShopDataModels\СomputersShopDataModels.csproj" />
</ItemGroup>
2024-05-12 11:25:48 +04:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y &quot;$(TargetDir)*.dll&quot;; &quot;$(SolutionDir)ImplementationExtensions\*.dll&quot;" />
</Target>
2024-03-04 22:33:22 +04:00
</Project>