Skip to content

Commit 2506cf0

Browse files
authored
Merge pull request #540 from Particular/support-net9-release-4.0
Update for .NET 9 - release-4.0
2 parents db8b34d + 7953039 commit 2506cf0

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,20 @@ jobs:
2525
fail-fast: false
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4.1.2
28+
uses: actions/checkout@v4.2.2
2929
with:
3030
fetch-depth: 0
3131
- name: Setup .NET SDK
32-
uses: actions/setup-dotnet@v4.0.0
32+
uses: actions/setup-dotnet@v4.1.0
3333
with:
34-
dotnet-version: 8.0.x
34+
dotnet-version: |
35+
9.0.x
36+
8.0.x
3537
- name: Build
3638
run: dotnet build src --configuration Release
3739
- name: Upload packages
3840
if: matrix.name == 'Windows'
39-
uses: actions/upload-artifact@v4.3.1
41+
uses: actions/upload-artifact@v4.4.3
4042
with:
4143
name: NuGet packages
4244
path: nugets/

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
runs-on: ubuntu-20.04
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4.1.2
17+
uses: actions/checkout@v4.2.2
1818
with:
1919
fetch-depth: 0
2020
- name: Setup .NET SDK
21-
uses: actions/setup-dotnet@v4.0.0
21+
uses: actions/setup-dotnet@v4.1.0
2222
with:
23-
dotnet-version: 8.0.x
23+
dotnet-version: 9.0.x
2424
- name: Build
2525
run: dotnet build src --configuration Release
2626
- name: Sign NuGet packages
@@ -31,7 +31,7 @@ jobs:
3131
client-secret: ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }}
3232
certificate-name: ${{ secrets.AZURE_KEY_VAULT_CERTIFICATE_NAME }}
3333
- name: Publish artifacts
34-
uses: actions/upload-artifact@v4.3.1
34+
uses: actions/upload-artifact@v4.4.3
3535
with:
3636
name: nugets
3737
path: nugets/*

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.400",
3+
"version": "9.0.100",
44
"rollForward": "latestFeature"
55
}
66
}

src/NServiceBus.CustomChecks.AcceptanceTests/NServiceBus.CustomChecks.AcceptanceTests.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>net481;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net481;net8.0;net9.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

src/NServiceBus.CustomChecks.Tests/NServiceBus.CustomChecks.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-
<TargetFrameworks>net481;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net481;net8.0;net9.0</TargetFrameworks>
55
<SignAssembly>true</SignAssembly>
66
<AssemblyOriginatorKeyFile>$(SolutionDir)NServiceBus.snk</AssemblyOriginatorKeyFile>
77
</PropertyGroup>

0 commit comments

Comments
 (0)