Skip to content

Commit fc756e6

Browse files
authored
Bump versioning to .NET 10 (#106421)
* Branding for .NET 10 * Temporarily hardcode AssemblyVersion to 9.0.0.0 while we update the TFM
1 parent 06f71f0 commit fc756e6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

eng/Versions.props

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<Project>
22
<PropertyGroup>
33
<!-- The .NET product branding version -->
4-
<ProductVersion>9.0.0</ProductVersion>
4+
<ProductVersion>10.0.0</ProductVersion>
55
<!-- File version numbers -->
6-
<MajorVersion>9</MajorVersion>
6+
<MajorVersion>10</MajorVersion>
77
<MinorVersion>0</MinorVersion>
88
<PatchVersion>0</PatchVersion>
99
<SdkBandVersion>9.0.100</SdkBandVersion>
1010
<PackageVersionNet8>8.0.8</PackageVersionNet8>
1111
<PackageVersionNet7>7.0.20</PackageVersionNet7>
1212
<PackageVersionNet6>6.0.$([MSBuild]::Add($([System.Version]::Parse('$(PackageVersionNet8)').Build),25))</PackageVersionNet6>
13-
<PreReleaseVersionLabel>rc</PreReleaseVersionLabel>
13+
<PreReleaseVersionLabel>alpha</PreReleaseVersionLabel>
1414
<PreReleaseVersionIteration>1</PreReleaseVersionIteration>
1515
<!-- Enable to remove prerelease label. -->
1616
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
@@ -19,7 +19,8 @@
1919
<SdkBandVersionForWorkload_FromRuntimeVersions>$(SdkBandVersion)$(WorkloadVersionSuffix)</SdkBandVersionForWorkload_FromRuntimeVersions>
2020
<!-- Set assembly version to align with major and minor version,
2121
as for the patches and revisions should be manually updated per assembly if it is serviced. -->
22-
<AssemblyVersion>$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion>
22+
<!-- Temporarily hard-code to 9.0.0.0. We can't version forward the Assembly Version without updating the TFM in dotnet/runtime. -->
23+
<AssemblyVersion>9.0.0.0</AssemblyVersion>
2324
<!-- Opt-in/out repo features -->
2425
<UsingToolIbcOptimization>false</UsingToolIbcOptimization>
2526
<UsingToolXliff>false</UsingToolXliff>

0 commit comments

Comments
 (0)