2021-01-16 01:31:39 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-09-07 13:03:30 +02:00
|
|
|
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
|
2021-11-09 10:26:46 -07:00
|
|
|
<PackageReference Include="microcharts" Version="0.9.5.9" />
|
2022-09-07 13:03:30 +02:00
|
|
|
<PackageReference Include="nunit" Version="3.13.3" />
|
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" />
|
2022-12-06 22:51:32 +01:00
|
|
|
<PackageReference Include="Svg.Skia" Version="0.5.18" />
|
2021-01-16 01:31:39 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\QuestPDF\QuestPDF.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-08-29 20:14:48 +02:00
|
|
|
<ItemGroup>
|
2021-08-26 22:25:33 +02:00
|
|
|
<None Update="quo-vadis.txt">
|
2021-09-07 13:16:34 +02:00
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
2021-08-29 20:14:48 +02:00
|
|
|
</None>
|
2021-09-13 20:36:29 +02:00
|
|
|
<None Update="LibreBarcode39-Regular.ttf">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2021-10-29 01:23:46 +02:00
|
|
|
<None Update="logo.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2022-01-16 17:03:01 +01:00
|
|
|
<None Update="pdf-icon.svg">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-05-08 15:46:06 +02:00
|
|
|
<None Update="multilingual.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-05-15 00:41:14 +02:00
|
|
|
<None Update="photo.jpg">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2021-08-29 20:14:48 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-01-16 01:31:39 +01:00
|
|
|
</Project>
|