Skip to content

Commit a4a4403

Browse files
committed
Disable up-to-date check of package baselines
1 parent 72783c3 commit a4a4403

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

eng/targets/Packaging.targets

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
<Project>
22

3+
<!--
4+
For now at least, disable this check and ignore out-of-date package baselines.
5+
Revisit after aspnet/AspNetCore#12702 is complete.
6+
-->
37
<Target Name="EnsureBaselineIsUpdated"
4-
Condition="'$(IsServicingBuild)' == 'true' AND '$(AspNetCoreBaselineVersion)' != '$(PreviousAspNetCoreReleaseVersion)'"
8+
Condition="'$(IsServicingBuild)' == 'true' AND '$(StabilizePackageVersion)' != 'true' AND '$(AspNetCoreBaselineVersion)' != '$(PreviousAspNetCoreReleaseVersion)'"
59
BeforeTargets="BeforeBuild">
610
<Error Text="The package baseline ($(AspNetCoreBaselineVersion)) is out of date with the latest release of this repo ($(PreviousAspNetCoreReleaseVersion)).
711
See $(RepoRoot)eng\tools\BaselineGenerator\README.md for instructions on updating this baseline." />

0 commit comments

Comments
 (0)