PIbd-21_RazubaevSM_Plumbing.../PlumbingRepair/PlumbingRepairBusinessLogic/PlumbingRepairBusinessLogic.csproj

28 lines
1.1 KiB
XML
Raw Normal View History

2024-03-23 22:01:27 +04:00
<Project Sdk="Microsoft.NET.Sdk">
2024-03-23 11:06:35 +04:00
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
2024-03-23 22:01:27 +04:00
<PackageReference Include="DocumentFormat.OpenXml" Version="3.0.2" />
<PackageReference Include="DocumentFormat.OpenXml.Features" Version="3.0.2" />
<PackageReference Include="DocumentFormat.OpenXml.Framework" Version="3.0.2" />
<PackageReference Include="DocumentFormat.OpenXml.Linq" Version="3.0.2" />
2024-05-02 22:08:35 +04:00
<PackageReference Include="MailKit" Version="4.5.0" />
2024-03-23 11:06:35 +04:00
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
2024-03-23 22:01:27 +04:00
<PackageReference Include="PdfSharp.MigraDoc.Standard" Version="1.51.15" />
2024-03-23 11:06:35 +04:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PlumbingRepairContracts\PlumbingRepairContracts.csproj" />
</ItemGroup>
2024-05-16 18:30:57 +04:00
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y &quot;$(TargetDir)*.dll&quot; &quot;$(SolutionDir)BusinessLogicImplementationExtensions\*.dll&quot;" />
</Target>
2024-03-23 11:06:35 +04:00
</Project>