Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
id: gitversion
- uses: actions/setup-dotnet@v5
with:
dotnet-version: '9.0.x'
dotnet-version: '10.0.2xx'

# Build
- name: Build (pre-release)
Expand Down
2 changes: 1 addition & 1 deletion doc/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pushd $PSScriptRoot

function Run-DotNet {
..\0install.ps1 run --batch --version 9.0.200.. https://apps.0install.net/dotnet/sdk.xml @args
..\0install.ps1 run --batch --version 10.. https://apps.0install.net/dotnet/sdk.xml @args
if ($LASTEXITCODE -ne 0) {throw "Exit Code: $LASTEXITCODE"}
}

Expand Down
2 changes: 1 addition & 1 deletion doc/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd `dirname $0`
if command -v dotnet > /dev/null 2> /dev/null; then
dotnet="dotnet"
else
dotnet="../0install.sh run --version 9.0.200.. https://apps.0install.net/dotnet/sdk.xml"
dotnet="../0install.sh run --version 10.. https://apps.0install.net/dotnet/sdk.xml"
fi

echo "Build docs"
Expand Down
3 changes: 3 additions & 0 deletions doc/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"exclude": ["UnitTests/*"]
}
],
"properties": {
"TargetFramework": "net10.0"
},
"dest": "api",
"filter": "filterConfig.yml"
}
Expand Down
7 changes: 4 additions & 3 deletions docker/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#DOTNET_VERSION=8.0.20
DOTNET_VERSION=9.0.9
WEASYPRINT_VERSION=66.0
#DOTNET_VERSION=8.0.22
#DOTNET_VERSION=9.0.11
DOTNET_VERSION=10.0.1
WEASYPRINT_VERSION=67.0
4 changes: 2 additions & 2 deletions src/Razor2Pdf/Razor2Pdf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyName>NanoByte.Razor2Pdf</AssemblyName>
<RootNamespace>NanoByte.Razor2Pdf</RootNamespace>
<LangVersion>13.0</LangVersion>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
Expand Down Expand Up @@ -38,7 +38,7 @@
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="MedallionShell.StrongName" Version="1.6.2" />
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="3.0.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.201" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.202" PrivateAssets="All" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Sample/Sample.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DeterministicSourcePaths>False</DeterministicSourcePaths>
Expand Down
2 changes: 1 addition & 1 deletion src/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ $ErrorActionPreference = "Stop"
pushd $PSScriptRoot

function Run-DotNet {
..\0install.ps1 run --batch --version 9.0.200.. https://apps.0install.net/dotnet/sdk.xml @args
..\0install.ps1 run --batch --version 10.. https://apps.0install.net/dotnet/sdk.xml @args
if ($LASTEXITCODE -ne 0) {throw "Exit Code: $LASTEXITCODE"}
}

Expand Down
2 changes: 1 addition & 1 deletion src/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd `dirname $0`
if command -v dotnet > /dev/null 2> /dev/null; then
dotnet="dotnet"
else
dotnet="../0install.sh run --version 9.0.200.. https://apps.0install.net/dotnet/sdk.xml"
dotnet="../0install.sh run --version 10.. https://apps.0install.net/dotnet/sdk.xml"
fi

# Build
Expand Down
Loading