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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
platform:
- { name: Windows x64, os: windows-2025 }
- { name: Windows x64, os: windows-2025-vs2026 }
- { name: Ubuntu x64, os: ubuntu-24.04 }
- { name: macOS arm64, os: macos-15 }
dotnet:
Expand All @@ -33,11 +33,11 @@ jobs:

steps:
- name: Checkout HTML Renderer
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup .NET ${{ matrix.dotnet.version }} SDK
id: setup-dotnet
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@v6
with:
dotnet-version: ${{ matrix.dotnet.version }}
- name: Enforce SDK Version
Expand All @@ -64,7 +64,7 @@ jobs:
run: dotnet pack Source/HtmlRenderer.WPF/HtmlRenderer.WPF.csproj --configuration Release --include-symbols -p:SymbolPackageFormat=snupkg --no-build --verbosity normal --output ${{ env.NuGetDirectory }}

- name: Upload NuGet package artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: "HTML Renderer (${{ matrix.platform.name }} ${{ matrix.dotnet.name }})"
path: ${{ env.NuGetDirectory }}/*.*nupkg
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
# mstest test results
TestResults

# Rider
.idea/

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

Expand Down
2 changes: 1 addition & 1 deletion Source/Demo/Common/HtmlRenderer.Demo.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
<EmbeddedResource Include="PerfSamples\2.Lots blocks in inline.htm" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="10.0.1" />
<PackageReference Include="System.Drawing.Common" Version="10.0.10" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\HtmlRenderer\HtmlRenderer.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion Source/Demo/WPF/HtmlRenderer.Demo.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
<Resource Include="fonts\CustomFont.ttf" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Extended.Wpf.Toolkit" Version="5.0.0" />
<PackageReference Include="Extended.Wpf.Toolkit" Version="5.1.2" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Source/HtmlRenderer.PdfSharp/HtmlRenderer.PdfSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ Features and Benefits:
</ItemGroup>
<ItemGroup>
<PackageReference Include="PDFsharp" Version="1.50.5147" />
<PackageReference Include="System.Drawing.Common" Version="10.0.1" />
<PackageReference Include="System.Drawing.Common" Version="10.0.10" />
</ItemGroup>
</Project>
Loading