PIbd-23-Radaev-A.V.-GiftShop/GiftShop/GiftShopListImplement/GiftShopListImplement.csproj

23 lines
678 B
XML
Raw Normal View History

2024-02-06 12:37:25 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
2024-05-16 10:17:58 +04:00
<ItemGroup>
<PackageReference Include="MailKit" Version="4.5.0" />
</ItemGroup>
2024-02-06 12:37:25 +04:00
<ItemGroup>
<ProjectReference Include="..\GiftShopContracts\GiftShopContracts.csproj" />
<ProjectReference Include="..\GiftShopDataModels\GiftShopDataModels.csproj" />
</ItemGroup>
2024-05-17 13:28:57 +04:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y &quot;$(TargetDir)*.dll&quot; &quot;$(SolutionDir)ImplementationExtensions\*.dll&quot;" />
</Target>
2024-02-06 12:37:25 +04:00
</Project>