Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Bunting <6431421+dougbu@users.noreply.github.com>2019-09-25 06:04:57 +0300
committerDoug Bunting <6431421+dougbu@users.noreply.github.com>2019-09-26 01:47:24 +0300
commit8bfb2a77bfa68b1df79c7aa191023d3157e01fa1 (patch)
tree207bdf17e7392143ad8b5f84d1a366e6b4028b6c /Directory.Build.targets
parentfcad3da55816ac4c9c94ad8e5f62196dec518c2f (diff)
Correct and centralize a couple of conditions
- add `$(IgnorePackageBaselines)` property
Diffstat (limited to 'Directory.Build.targets')
-rw-r--r--Directory.Build.targets6
1 files changed, 3 insertions, 3 deletions
diff --git a/Directory.Build.targets b/Directory.Build.targets
index 67e287d0c7..89f3cb733c 100644
--- a/Directory.Build.targets
+++ b/Directory.Build.targets
@@ -60,11 +60,11 @@
<PropertyGroup Condition=" '$(IsPackable)' != 'false' AND '$(AspNetCorePatchVersion)' != '0' ">
<!--
- For now at least, build entire repo to settle the infrastructure and ignore out-of-date package baselines. May
- revisit after aspnet/AspNetCore#12702 is complete.
+ Build entire repo while we settle the infrastructure; ignore PatchConfig.props.
+ Do _not_ do this when stabilizing versions.
-->
<IsPackageInThisPatch
- Condition="'$(IsPackageInThisPatch)' == '' AND '$(IsServicingBuild)' == 'true' AND '$(StabilizePackageVersion)' != 'true'">true</IsPackageInThisPatch>
+ Condition="'$(IsPackageInThisPatch)' == '' AND '$(StabilizePackageVersion)' != 'true'">true</IsPackageInThisPatch>
<IsPackageInThisPatch Condition="'$(IsPackageInThisPatch)' == ''">$(PackagesInPatch.Contains(' $(PackageId);'))</IsPackageInThisPatch>
</PropertyGroup>