-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump PuppeteerSharp from 5.1.0 to 6.1.0 Bump Microsoft.SourceLink.GitHub from 1.0.0 to 1.1.1 Migrated CI to Github Actions Upgraded demo cli to .net 6.0
- Loading branch information
Showing
1 changed file
with
44 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,48 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<RepositoryUrl>https://github.com/Codeuctivity/PuppeteerSharp.Renderer</RepositoryUrl> | ||
<PackageTags>HtmlToPdf HtmlToPng HTML render convert PDF PNG PuppeteerSharp HTML2PDF HTML2PNG linux windows</PackageTags> | ||
<Authors>Stefan Seeland</Authors> | ||
<Company>Codeuctivity</Company> | ||
<PackageIcon>NugetIcon.png</PackageIcon> | ||
<PackageProjectUrl>https://github.com/Codeuctivity/PuppeteerSharp.Renderer</PackageProjectUrl> | ||
<Description>Renders HTML to PNG or PDF, supports windows and linux</Description> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<AssemblyOriginatorKeyFile>PuppeteerSharp.Renderer.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>false</SignAssembly> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<LangVersion>9.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<PackageId>PuppeteerSharp.Renderer</PackageId> | ||
<Product>PuppeteerSharp.Renderer</Product> | ||
<AssemblyName>Codeuctivity.PuppeteerSharp.Renderer</AssemblyName> | ||
<RootNamespace>Codeuctivity.PuppeteerSharp.Renderer</RootNamespace> | ||
<EnableNETAnalyzers>true</EnableNETAnalyzers> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<RepositoryUrl>https://github.com/Codeuctivity/PuppeteerSharp.Renderer</RepositoryUrl> | ||
<PackageTags>HtmlToPdf HtmlToPng HTML render convert PDF PNG PuppeteerSharp HTML2PDF HTML2PNG linux windows</PackageTags> | ||
<Authors>Stefan Seeland</Authors> | ||
<Company>Codeuctivity</Company> | ||
<Version Condition="'$(CURRENT_VERSION)' != ''">$(CURRENT_VERSION)</Version> | ||
<Version Condition="'$(CURRENT_VERSION)' == ''">0.0.1</Version> | ||
<AssemblyVersion>$(Version)</AssemblyVersion> | ||
<FileVersion>$(Version)</FileVersion> | ||
<PackageVersion>$(Version)</PackageVersion> | ||
<PackageReleaseNotes>$(LAST_COMMIT_MESSAGE)</PackageReleaseNotes> | ||
<PackageIcon>NugetIcon.png</PackageIcon> | ||
<PackageProjectUrl>https://github.com/Codeuctivity/PuppeteerSharp.Renderer</PackageProjectUrl> | ||
<Description>Renders HTML to PNG or PDF, supports windows and linux</Description> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<AssemblyOriginatorKeyFile>PuppeteerSharp.Renderer.snk</AssemblyOriginatorKeyFile> | ||
<SignAssembly>false</SignAssembly> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<LangVersion>9.0</LangVersion> | ||
<Nullable>enable</Nullable> | ||
<PackageId>PuppeteerSharp.Renderer</PackageId> | ||
<Product>PuppeteerSharp.Renderer</Product> | ||
<AssemblyName>Codeuctivity.PuppeteerSharp.Renderer</AssemblyName> | ||
<RootNamespace>Codeuctivity.PuppeteerSharp.Renderer</RootNamespace> | ||
<EnableNETAnalyzers>true</EnableNETAnalyzers> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" /> | ||
<PackageReference Include="PuppeteerSharp" Version="6.1.0" /> | ||
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.33.0.40503"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="NugetIcon.png" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" /> | ||
<PackageReference Include="PuppeteerSharp" Version="6.1.0" /> | ||
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.33.0.40503"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="NugetIcon.png" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
</Project> |