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-26 01:12:51 +0300
committerDoug Bunting <6431421+dougbu@users.noreply.github.com>2019-09-26 01:47:24 +0300
commit2d9d13aa38af185612848fe88bd9da8fefd5e73d (patch)
tree9f600b2f18f71291a0f588dcf7c1a786c5b7b541 /Directory.Build.targets
parent8bfb2a77bfa68b1df79c7aa191023d3157e01fa1 (diff)
Further centralize choice to opt out of servicing features for now
- no changes in known frameworks, targeting pack features, et cetera
Diffstat (limited to 'Directory.Build.targets')
-rw-r--r--Directory.Build.targets9
1 files changed, 2 insertions, 7 deletions
diff --git a/Directory.Build.targets b/Directory.Build.targets
index 89f3cb733c..0bbb16aa49 100644
--- a/Directory.Build.targets
+++ b/Directory.Build.targets
@@ -58,13 +58,8 @@
<Import Project="eng\Baseline.Designer.props" />
- <PropertyGroup Condition=" '$(IsPackable)' != 'false' AND '$(AspNetCorePatchVersion)' != '0' ">
- <!--
- Build entire repo while we settle the infrastructure; ignore PatchConfig.props.
- Do _not_ do this when stabilizing versions.
- -->
- <IsPackageInThisPatch
- Condition="'$(IsPackageInThisPatch)' == '' AND '$(StabilizePackageVersion)' != 'true'">true</IsPackageInThisPatch>
+ <PropertyGroup
+ Condition=" '$(IsPackable)' != 'false' AND '$(AspNetCorePatchVersion)' != '0' AND '$(DisableServicingFeatures)' != 'true' ">
<IsPackageInThisPatch Condition="'$(IsPackageInThisPatch)' == ''">$(PackagesInPatch.Contains(' $(PackageId);'))</IsPackageInThisPatch>
</PropertyGroup>