Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,7 @@ jobs:

- name: NuGet Push
if: startsWith(github.ref, 'refs/tags/') && matrix.dotnet.name == '.NET 8' && runner.os == 'Windows'
run: dotnet nuget push ${{ env.NuGetDirectory }}/*.*nupkg --api-key ${{steps.login.outputs.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
run: |
foreach ($file in (Get-ChildItem ${{ env.NuGetDirectory }} -Recurse -Include *.*nupkg)) {
dotnet nuget push $file --api-key ${{steps.login.outputs.NUGET_API_KEY}} --source https://api.nuget.org/v3/index.json
}
6 changes: 6 additions & 0 deletions Source/Demo/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<Project>
<PropertyGroup>
<Authors>Arthur Teplitzki</Authors>
<Version>1.5.1</Version>
</PropertyGroup>
</Project>
9 changes: 6 additions & 3 deletions Source/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@
<Authors>Arthur Teplitzki</Authors>
<Owners>Arthur Teplitzki</Owners>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseUrl>https://github.com/ArthurHub/HTML-Renderer/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<PackageProjectUrl>https://codeplexarchive.org/project/HtmlRenderer</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/ArthurHub/HTML-Renderer/refs/heads/master/html.ico</PackageIconUrl>
<PackageIcon>html.png</PackageIcon>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>See https://github.com/ArthurHub/HTML-Renderer/releases.</PackageReleaseNotes>
<Version>1.5.1</Version>
<Version>1.5.2-dev</Version>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<None Include="../../html.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Source/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@

// Version information for an assembly consists of the following four values:

[assembly: AssemblyVersion("1.5.1.0")]
[assembly: AssemblyVersion("1.5.2.0")]
Binary file added html.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading