Skip to content

Commit 28735db

Browse files
committed
Updating to .NET 9
1 parent df4b667 commit 28735db

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG SDK_VERSION="8.0"
1+
ARG SDK_VERSION="9.0"
22
FROM mcr.microsoft.com/dotnet/sdk:${SDK_VERSION}
33

44
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"build": {
44
"dockerfile": "Dockerfile",
55
"args": {
6-
"SDK_VERSION": "8.0",
6+
"SDK_VERSION": "9.0",
77
}
88
},
99
"customizations": {

.github/workflows/continuous-integration-workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
choco install pdftk-server
2323
echo "C:\Program Files (x86)\PDFtk Server\bin\" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
2424
- uses: actions/checkout@v4
25-
- name: Setup .NET 6
26-
uses: actions/setup-dotnet@v4
27-
with:
28-
dotnet-version: 6.0.x
2925
- name: Setup .NET 8
3026
uses: actions/setup-dotnet@v4
3127
with:
3228
dotnet-version: 8.0.x
29+
- name: Setup .NET 9
30+
uses: actions/setup-dotnet@v4
31+
with:
32+
dotnet-version: 9.0.x
3333
- name: Restore dependencies
3434
run: dotnet restore
3535
- name: Build

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.100",
3+
"version": "9.0.100",
44
"rollForward": "latestFeature"
55
}
66
}

samples/WebApplicationFillForm/WebApplicationFillForm.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<UserSecretsId>58e1799c-a4c0-41aa-9399-ac70ecee6ba2</UserSecretsId>
66
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
77
<DockerfileContext>..\..</DockerfileContext>

src/Kevsoft.PDFtk/Kevsoft.PDFtk.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;netstandard2.1;net8.0;net9.0;</TargetFrameworks>
55
</PropertyGroup>
66

77
<PropertyGroup>

test/Kevsoft.PDFtk.Tests/Kevsoft.PDFtk.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)