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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorJose Perez Rodriguez <joperezr@microsoft.com>2017-04-13 21:30:24 +0300
committerGitHub <noreply@github.com>2017-04-13 21:30:24 +0300
commit7f601f5637bfbef8a9297b00a26139183df6fb41 (patch)
tree99d7427c3423b77ad49b4c7ac7e21ef3a593290d /pkg
parent6738caf66a1fc6ad990549d8f176c8a0543d79ee (diff)
Only build netfx package on allconfigurations (#18337)
* Only build netfx package on allconfigurations * PR Feedback
Diffstat (limited to 'pkg')
-rw-r--r--pkg/NETStandard.Library.NETFramework/NETStandard.Library.NETFramework.builds3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/NETStandard.Library.NETFramework/NETStandard.Library.NETFramework.builds b/pkg/NETStandard.Library.NETFramework/NETStandard.Library.NETFramework.builds
index 65816c1d8b..17bb6bfebc 100644
--- a/pkg/NETStandard.Library.NETFramework/NETStandard.Library.NETFramework.builds
+++ b/pkg/NETStandard.Library.NETFramework/NETStandard.Library.NETFramework.builds
@@ -2,7 +2,8 @@
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
- <ItemGroup>
+ <!-- for official builds, only build during the AllConfigurations leg -->
+ <ItemGroup Condition="'$(OfficialBuildId)' == '' Or '$(BuildAllConfigurations)' == 'true'">
<Project Include="$(MSBuildProjectName).pkgproj" />
</ItemGroup>