File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 14
14
In 8.0, we shipped Microsoft.AspNetCore.Testing package as stable even when it was in the dev stage, so we
15
15
keep it as stable for compatiblity.
16
16
-->
17
- <DotNetFinalVersionKind Condition =" '$(configureDotNetFinalVersionKind )' == 'true' And '$(DotNetFinalVersionKind)' == '' And '$(_IsStable)' == 'true' " >release</DotNetFinalVersionKind >
17
+ <DotNetFinalVersionKind Condition =" '$(StabilizePackageVersion )' == 'true' And '$(DotNetFinalVersionKind)' == '' And '$(_IsStable)' == 'true' " >release</DotNetFinalVersionKind >
18
18
19
19
<!-- Preview packages: do not use stable branding and do not warn about lack of [Experimental] -->
20
20
<NoWarn Condition =" '$(Stage)' == 'dev' or '$(Stage)' == 'preview'" >$(NoWarn);LA0003</NoWarn >
21
21
<!--
22
22
Makes it such that the package version won't be stabilized even when the rest of the repo is going stable.
23
23
https://github.com/dotnet/arcade/blob/main/Documentation/CorePackages/Versioning.md#package-version
24
24
-->
25
- <SuppressFinalPackageVersion />
26
25
<SuppressFinalPackageVersion Condition =" '$(_IsStable)' != 'true' " >true</SuppressFinalPackageVersion >
27
26
</PropertyGroup >
28
27
</Project >
Original file line number Diff line number Diff line change 9
9
<ApiCompatBaselineVersion >9.3.0</ApiCompatBaselineVersion >
10
10
<AssemblyVersion >$(MajorVersion).$(MinorVersion).0.0</AssemblyVersion >
11
11
<!--
12
- When DotNetFinalVersionKind is set to 'release ', this branch will produce stable outputs for 'Shipping' packages
12
+ When StabilizePackageVersion is set to 'true ', this branch will produce stable outputs for 'Shipping' packages
13
13
-->
14
- <DotNetFinalVersionKind / >
14
+ <StabilizePackageVersion Condition = " '$(StabilizePackageVersion)' == '' " >false</ StabilizePackageVersion >
15
15
<!-- Enabling this rule will cause build failures on undocumented public APIs. -->
16
16
<SkipArcadeNoWarnCS1591 >true</SkipArcadeNoWarnCS1591 >
17
17
</PropertyGroup >
You can’t perform that action at this time.
0 commit comments