2024-02-25 19:43:57 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-03-29 12:44:11 +04:00
|
|
|
|
<ItemGroup>
|
2024-04-08 00:44:32 +04:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.9.2" />
|
2024-03-29 12:44:11 +04:00
|
|
|
|
<PackageReference Include="PdfSharp.MigraDoc.Standard" Version="1.51.12" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-25 19:43:57 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\SushiBarContracts\SushiBarContracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\SushiBarDataModels\SushiBarDataModels.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-05-19 02:42:42 +04:00
|
|
|
|
<Target Name="AfterBuild">
|
|
|
|
|
<Exec Command="copy /Y "$(TargetDir)*.dll" "\SushiBar\ImplementationExtentions"" />
|
|
|
|
|
</Target>
|
|
|
|
|
|
2024-02-25 19:43:57 +04:00
|
|
|
|
</Project>
|