Skip to content

Commit 98c8ab4

Browse files
Updates for .NET 10
1 parent bae3a1f commit 98c8ab4

7 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
SECRETS_AVAILABLE: ${{ secrets.SECRETS_AVAILABLE }}
3030
run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 })
3131
- name: Checkout
32-
uses: actions/checkout@v4.2.2
32+
uses: actions/checkout@v6.0.1
3333
with:
3434
fetch-depth: 0
3535
- name: Setup .NET SDK
36-
uses: actions/setup-dotnet@v4.3.0
36+
uses: actions/setup-dotnet@v5.0.1
3737
with:
38-
dotnet-version: 8.0.x
38+
global-json-file: global.json
3939
- name: Setup Azure Functions Core Tools - Windows
4040
if: runner.os == 'Windows'
4141
run: |
@@ -54,13 +54,13 @@ jobs:
5454
run: dotnet build src --configuration Release
5555
- name: Upload packages
5656
if: runner.os == 'Windows'
57-
uses: actions/upload-artifact@v4.6.1
57+
uses: actions/upload-artifact@v6.0.0
5858
with:
5959
name: NuGet packages
6060
path: nugets/
6161
retention-days: 7
6262
- name: Azure login
63-
uses: azure/login@v2.2.0
63+
uses: azure/login@v2.3.0
6464
with:
6565
creds: ${{ secrets.AZURE_ACI_CREDENTIALS }}
6666
- name: Setup Azure Service Bus

.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-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4.2.2
17+
uses: actions/checkout@v6.0.1
1818
with:
1919
fetch-depth: 0
2020
- name: Setup .NET SDK
21-
uses: actions/setup-dotnet@v4.3.0
21+
uses: actions/setup-dotnet@v5.0.1
2222
with:
23-
dotnet-version: 8.0.x
23+
global-json-file: global.json
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.6.1
34+
uses: actions/upload-artifact@v6.0.0
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": "10.0.100",
44
"rollForward": "latestFeature"
55
}
66
}

src/IntegrationTests.HostV4/IntegrationTests.HostV4.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>net10.0</TargetFramework>
55
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
66
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
77
<CompilerGeneratedFilesOutputPath>$(BaseIntermediateOutputPath)\GeneratedFiles</CompilerGeneratedFilesOutputPath>

src/NServiceBus.AzureFunctions.InProcess.Analyzer.Tests/NServiceBus.AzureFunctions.InProcess.Analyzer.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>net10.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

src/ServiceBus.AcceptanceTests/ServiceBus.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-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<SignAssembly>true</SignAssembly>
66
<AssemblyOriginatorKeyFile>..\NServiceBusTests.snk</AssemblyOriginatorKeyFile>
77
</PropertyGroup>

src/ServiceBus.Tests/ServiceBus.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>net10.0</TargetFramework>
55
<SignAssembly>true</SignAssembly>
66
<AssemblyOriginatorKeyFile>..\NServiceBusTests.snk</AssemblyOriginatorKeyFile>
77
</PropertyGroup>

0 commit comments

Comments
 (0)