Skip to content

Commit 13daa0f

Browse files
[build] update to .NET 10 Preview 6 (#1227)
Update to: * .NET SDK 9.0.303 * .NET SDK 10.0.100-preview.6.25358.103 I also removed a couple values that were unused that would cause confusion: `dotnetWorkloadSource` and `dotnetNextApiLevel`. Other changes: Xamarin.Build.Download.csproj : error NU1015: The following PackageReference item(s) do not have a version specified: Microsoft.Build.Framework, Microsoft.Build.Utilities.Core * Update `util/Directory.Build.props` to fix this.
1 parent 2658226 commit 13daa0f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build/ci/variables.yml

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

2121
# Tool variables
22-
dotnetVersion: '9.0.301' # .NET version to install on agent
22+
dotnetVersion: '9.0.303' # .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
25-
dotnetWorkloadSource: 'https://aka.ms/dotnet6/nuget/index.json' # .NET engineering URL to find workloads
2625

2726
# Standard test variables
2827
standardTestProject: tests/allpackages/AllPackagesTests.csproj # Standard tests project file
@@ -35,9 +34,8 @@ variables:
3534
extendedTestAssembly: tests/extended/bin/$(configuration)/net$(dotnetFrameworkVersion).0/ExtendedTests.dll # Extended tests compiled binary
3635

3736
# dotnet-next test variables
38-
dotnetNextVersion: 10.0.100-preview.5.25277.114 # .NET preview version to install
37+
dotnetNextVersion: 10.0.100-preview.6.25358.103 # .NET preview version to install
3938
dotnetNextFrameworkVersion: 10 # The number to use for TF (eg: netX.0-android)
40-
dotnetNextApiLevel: 35 # The Android SDK API Level to use (eg: netX.0-androidXX.0)
4139

4240
# dnceng-public variables
4341
NetCorePublicPoolName: NetCore-Public-XL

util/Directory.Build.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@
33
which is tuned for building bindings packages. -->
44
<PropertyGroup>
55
<_DefaultNetTargetFramework>net9.0</_DefaultNetTargetFramework>
6+
<!-- Duplicate of root Directory.Build.props -->
7+
<MSBuildPackageReferenceVersion Condition=" '$(MSBuildPackageReferenceVersion)' == '' ">17.13.9</MSBuildPackageReferenceVersion>
68
</PropertyGroup>
79
</Project>

0 commit comments

Comments
 (0)