2024-02-05 20:36:39 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
|
|
|
|
|
</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 "$(TargetDir)*.dll"; "$(SolutionDir)ImplementationExtensions\*.dll"" />
|
|
|
|
|
</Target>
|
2024-05-12 11:23:15 +04:00
|
|
|
|
|
2024-02-05 20:36:39 +04:00
|
|
|
|
</Project>
|