QuestPDF.Previewer.csproj 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <Authors>MarcinZiabek</Authors>
  4. <Company>CodeFlint</Company>
  5. <PackageId>QuestPDF.Previewer</PackageId>
  6. <Version>2022.9.1</Version>
  7. <PackAsTool>true</PackAsTool>
  8. <ToolCommandName>questpdf-previewer</ToolCommandName>
  9. <PackageDescription>QuestPDF is an open-source, modern and battle-tested library that can help you with generating PDF documents by offering friendly, discoverable and predictable C# fluent API.</PackageDescription>
  10. <PackageReleaseNotes>Initial release.</PackageReleaseNotes>
  11. <LangVersion>10</LangVersion>
  12. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  13. <PackageIcon>Logo.png</PackageIcon>
  14. <PackageIconUrl>https://www.questpdf.com/images/package-logo.png</PackageIconUrl>
  15. <PackageProjectUrl>https://www.questpdf.com/</PackageProjectUrl>
  16. <RepositoryUrl>https://github.com/QuestPDF/library.git</RepositoryUrl>
  17. <RepositoryType>git</RepositoryType>
  18. <Copyright>Marcin Ziąbek, QuestPDF contributors</Copyright>
  19. <PackageTags>pdf report file export generate generation tool create creation render portable document format quest html library converter open source free standard core previewer</PackageTags>
  20. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  21. <IncludeSymbols>true</IncludeSymbols>
  22. <SymbolPackageFormat>snupkg</SymbolPackageFormat>
  23. <OutputType>exe</OutputType>
  24. <TargetFramework>net6.0</TargetFramework>
  25. <ImplicitUsings>enable</ImplicitUsings>
  26. <Nullable>enable</Nullable>
  27. </PropertyGroup>
  28. <ItemGroup>
  29. <AvaloniaResource Include="Resources\Logo.png" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <EmbeddedResource Include="Resources\Logo.png" />
  33. <None Include="Resources\Logo.png">
  34. <Pack>true</Pack>
  35. <Visible>false</Visible>
  36. <PackagePath>\</PackagePath>
  37. </None>
  38. </ItemGroup>
  39. <ItemGroup>
  40. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  41. <PackageReference Include="Avalonia" Version="0.10.10" />
  42. <PackageReference Include="Avalonia.Desktop" Version="0.10.10" />
  43. <PackageReference Include="Avalonia.Diagnostics" Version="0.10.10" />
  44. <PackageReference Include="Avalonia.Markup.Xaml.Loader" Version="0.10.10" />
  45. <PackageReference Include="Avalonia.ReactiveUI" Version="0.10.10" />
  46. <PackageReference Include="ReactiveUI" Version="17.1.50" />
  47. <PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.80.4" />
  48. <PackageReference Include="System.Reactive" Version="5.0.0" />
  49. <PackageReference Include="SkiaSharp" Version="2.80.4" />
  50. </ItemGroup>
  51. </Project>