File tree Expand file tree Collapse file tree 5 files changed +13
-11
lines changed
NServiceBus.CustomChecks.AcceptanceTests
NServiceBus.CustomChecks.Tests Expand file tree Collapse file tree 5 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -25,18 +25,20 @@ jobs:
25
25
fail-fast : false
26
26
steps :
27
27
- name : Checkout
28
- uses : actions/checkout@v4.1 .2
28
+ uses : actions/checkout@v4.2 .2
29
29
with :
30
30
fetch-depth : 0
31
31
- name : Setup .NET SDK
32
- uses : actions/setup-dotnet@v4.0 .0
32
+ uses : actions/setup-dotnet@v4.1 .0
33
33
with :
34
- dotnet-version : 8.0.x
34
+ dotnet-version : |
35
+ 9.0.x
36
+ 8.0.x
35
37
- name : Build
36
38
run : dotnet build src --configuration Release
37
39
- name : Upload packages
38
40
if : matrix.name == 'Windows'
39
- uses : actions/upload-artifact@v4.3.1
41
+ uses : actions/upload-artifact@v4.4.3
40
42
with :
41
43
name : NuGet packages
42
44
path : nugets/
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ jobs:
14
14
runs-on : ubuntu-20.04
15
15
steps :
16
16
- name : Checkout
17
- uses : actions/checkout@v4.1 .2
17
+ uses : actions/checkout@v4.2 .2
18
18
with :
19
19
fetch-depth : 0
20
20
- name : Setup .NET SDK
21
- uses : actions/setup-dotnet@v4.0 .0
21
+ uses : actions/setup-dotnet@v4.1 .0
22
22
with :
23
- dotnet-version : 8 .0.x
23
+ dotnet-version : 9 .0.x
24
24
- name : Build
25
25
run : dotnet build src --configuration Release
26
26
- name : Sign NuGet packages
31
31
client-secret : ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }}
32
32
certificate-name : ${{ secrets.AZURE_KEY_VAULT_CERTIFICATE_NAME }}
33
33
- name : Publish artifacts
34
- uses : actions/upload-artifact@v4.3.1
34
+ uses : actions/upload-artifact@v4.4.3
35
35
with :
36
36
name : nugets
37
37
path : nugets/*
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 8 .0.400 " ,
3
+ "version" : " 9 .0.100 " ,
4
4
"rollForward" : " latestFeature"
5
5
}
6
6
}
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net481;net8.0</TargetFrameworks >
4
+ <TargetFrameworks >net481;net8.0;net9.0 </TargetFrameworks >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net481;net8.0</TargetFrameworks >
4
+ <TargetFrameworks >net481;net8.0;net9.0 </TargetFrameworks >
5
5
<SignAssembly >true</SignAssembly >
6
6
<AssemblyOriginatorKeyFile >$(SolutionDir)NServiceBus.snk</AssemblyOriginatorKeyFile >
7
7
</PropertyGroup >
You can’t perform that action at this time.
0 commit comments