2024-03-15 00:35:44 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-04-25 21:56:17 +04:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2024-03-15 00:35:44 +04:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2024-04-25 20:14:44 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="PdfSharp.MigraDoc.Standard" Version="1.51.15" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-03-15 00:35:44 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\ConfectioneryContracts\ConfectioneryContracts.csproj" />
|
2024-04-25 21:56:17 +04:00
|
|
|
<ProjectReference Include="..\ConfectioneryDatabaseImplement\ConfectioneryDatabaseImplement.csproj" />
|
2024-03-15 00:35:44 +04:00
|
|
|
<ProjectReference Include="..\ConfectioneryDataModels\ConfectioneryDataModels.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-06-04 08:48:13 +04:00
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
|
|
|
|
<Exec Command="copy /Y "$(TargetDir)*.dll" "$(SolutionDir)ImplementationExtensions\*.dll"" />
|
|
|
|
</Target>
|
|
|
|
|
2024-03-15 00:35:44 +04:00
|
|
|
</Project>
|