QuestPDF.Previewer.csproj 621 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <Nullable>enable</Nullable>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <OutputType>Library</OutputType>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\QuestPDF\QuestPDF.csproj" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <None Remove="index.html" />
  13. <EmbeddedResource Include="index.html" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Content Remove="appsettings.Development.json" />
  17. <Content Remove="appsettings.json" />
  18. </ItemGroup>
  19. </Project>