|
8 | 8 | <PropertyGroup Label="Version settings">
|
9 | 9 | <MajorVersion>3</MajorVersion>
|
10 | 10 | <MinorVersion>0</MinorVersion>
|
11 |
| - <PatchVersion>0</PatchVersion> |
| 11 | + <PatchVersion>1</PatchVersion> |
12 | 12 | <VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
|
13 |
| - <PreReleaseVersionLabel>rc2</PreReleaseVersionLabel> |
| 13 | + <PreReleaseVersionLabel>servicing</PreReleaseVersionLabel> |
14 | 14 | <AssemblyVersion Condition="'$(IsReferenceAssemblyProject)' != 'true'">$(VersionPrefix).0</AssemblyVersion>
|
15 | 15 | <!--
|
16 | 16 | We do not support changing reference assemblies in a patch. This ignores
|
|
19 | 19 | -->
|
20 | 20 | <AssemblyVersion Condition="'$(IsReferenceAssemblyProject)' == 'true'">$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion>
|
21 | 21 | <ExperimentalVersionPrefix>0.1.$(PatchVersion)</ExperimentalVersionPrefix>
|
| 22 | + <!-- |
| 23 | + Until package baselines are updated (see aspnet/AspNetCore#12702), ignore them and PatchConfig.props. This also |
| 24 | + gives us time to build the entire repo and settle the infrastructure. Do _not_ do this when stabilizing versions. |
| 25 | + --> |
| 26 | + <DisableServicingFeatures |
| 27 | + Condition=" '$(DisableServicingFeatures)' == '' AND '$(StabilizePackageVersion)' != 'true' ">true</DisableServicingFeatures> |
22 | 28 | <!-- Servicing builds have different characteristics for the way dependencies, baselines, and versions are handled. -->
|
23 |
| - <IsServicingBuild Condition=" '$(PreReleaseVersionLabel)' == 'servicing' ">true</IsServicingBuild> |
| 29 | + <IsServicingBuild |
| 30 | + Condition=" '$(DisableServicingFeatures)' != 'true' AND '$(PreReleaseVersionLabel)' == 'servicing' ">true</IsServicingBuild> |
24 | 31 | <!-- This is used for error checking to ensure generated code and baselines are up to date when we increment the patch. -->
|
25 | 32 | <PreviousExtensionsReleaseVersion Condition=" '$(PatchVersion)' != '0' ">$(MajorVersion).$(MinorVersion).$([MSBuild]::Subtract($(PatchVersion), 1))</PreviousExtensionsReleaseVersion>
|
26 | 33 | <!--
|
27 | 34 | When StabilizePackageVersion is set to 'true', this branch will produce stable outputs for 'Shipping' packages
|
28 | 35 | -->
|
29 |
| - <StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">true</StabilizePackageVersion> |
| 36 | + <StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion> |
30 | 37 | <DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
|
31 | 38 | </PropertyGroup>
|
32 | 39 | <PropertyGroup Label="Arcade settings">
|
|
102 | 109 | <SystemThreadingTasksExtensionsPackageVersion>4.5.2</SystemThreadingTasksExtensionsPackageVersion>
|
103 | 110 | <SystemValueTuplePackageVersion>4.5.0</SystemValueTuplePackageVersion>
|
104 | 111 | </PropertyGroup>
|
105 |
| - <PropertyGroup Label="Restore sources"> |
106 |
| - <RestoreSources Condition="'$(DotNetBuildOffline)' != 'true'"> |
107 |
| - $(RestoreSources); |
108 |
| - https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json; |
109 |
| - </RestoreSources> |
110 |
| - <RestoreSources Condition="'$(DotNetBuildOffline)' != 'true' AND $(MicrosoftNetCompilersToolsetVersion.Contains('-')) "> |
111 |
| - $(RestoreSources); |
112 |
| - https://dotnet.myget.org/F/roslyn/api/v3/index.json; |
113 |
| - </RestoreSources> |
114 |
| - </PropertyGroup> |
115 | 112 | </Project>
|
0 commit comments