2021-01-16 01:31:39 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-12-06 22:51:32 +01:00
|
|
|
<PackageReference Include="FluentAssertions" Version="6.8.0" />
|
2021-09-18 01:03:58 +02:00
|
|
|
<PackageReference Include="nunit" Version="3.13.2" />
|
2022-12-06 22:51:32 +01:00
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.3.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.0" />
|
2022-12-06 22:49:42 +01:00
|
|
|
<PackageReference Include="SkiaSharp" Version="2.88.3" />
|
2021-01-16 01:31:39 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\QuestPDF\QuestPDF.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-01-09 11:59:06 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Resources\FontContent.ttf">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<EmbeddedResource Include="Resources\FontEmbeddedResource.ttf">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-01-16 01:31:39 +01:00
|
|
|
</Project>
|