Skip to content

Commit 2143beb

Browse files
[build] update to .NET 10 GA (#1323)
.NET version updates: * Updated the `dotnetVersion` variable from `9.0.306` to `9.0.308` in `build/ci/variables.yml` to use the latest stable .NET 9 release. * Updated the `dotnetNextVersion` variable from the preview release `10.0.100-rc.2.25502.107` to the stable release `10.0.100` in `build/ci/variables.yml`.
1 parent 9313453 commit 2143beb

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

build/ci/setup-environment.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,13 @@ steps:
1616
displayName: 'Use dotnet $(dotnetVersion)'
1717
inputs:
1818
version: $(dotnetVersion)
19-
includePreviewVersions: true
2019
condition: ne('$(dotnetVersion)', '')
2120

2221
- task: UseDotNet@2
2322
displayName: 'Use dotnet $(dotnetNextVersion)'
2423
inputs:
2524
version: $(dotnetNextVersion)
2625
performMultiLevelLookup: true
27-
includePreviewVersions: true
2826
condition: ne('$(dotnetNextVersion)', '')
2927

3028
- script: dotnet --info

build/ci/variables.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ variables:
1919
macosAgentPoolName: VSEng-VSMac-Xamarin-Shared # macOS VM pool name
2020

2121
# Tool variables
22-
dotnetVersion: '9.0.306' # .NET version to install on agent
22+
dotnetVersion: '9.0.308' # .NET version to install on agent
2323
dotnetFrameworkVersion: 9 # The number to use for TF (eg: netX.0-android)
2424
dotnetNuGetOrgSource: 'https://api.nuget.org/v3/index.json' # NuGet.org URL to find workloads
2525

@@ -34,7 +34,7 @@ variables:
3434
extendedTestAssembly: tests/extended/bin/$(configuration)/net$(dotnetFrameworkVersion).0/ExtendedTests.dll # Extended tests compiled binary
3535

3636
# dotnet-next test variables
37-
dotnetNextVersion: 10.0.100-rc.2.25502.107 # .NET preview version to install
37+
dotnetNextVersion: 10.0.100 # .NET version to install
3838
dotnetNextFrameworkVersion: 10 # The number to use for TF (eg: netX.0-android)
3939

4040
# dnceng-public variables

0 commit comments

Comments
 (0)