diff options
author | Joel Hendrix <jhendrix@microsoft.com> | 2015-08-14 11:39:35 -0700 |
---|---|---|
committer | Joel Hendrix <jhendrix@microsoft.com> | 2015-08-14 11:39:35 -0700 |
commit | e43e64235477ad690cc7a2a957a7bc48d2c7e89c (patch) | |
tree | 6b334b01de185b526b36a53d327f663393b1d6d7 /dirs.proj | |
parent | 46bb3fa7c4469c70d07b3a7b43370fe630d4fb69 (diff) | |
download | coreclr-e43e64235477ad690cc7a2a957a7bc48d2c7e89c.tar.gz coreclr-e43e64235477ad690cc7a2a957a7bc48d2c7e89c.tar.bz2 coreclr-e43e64235477ad690cc7a2a957a7bc48d2c7e89c.zip |
Consolidate enabling of xplat binary downloads into GetXPlatBinaries.targets.
Disable xplat build for SSV builds.
[tfs-changeset: 1514806]
Diffstat (limited to 'dirs.proj')
-rw-r--r-- | dirs.proj | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -13,14 +13,12 @@ <BuildInPhase1>true</BuildInPhase1> <BuildInPhase2>true</BuildInPhase2> <BuildSysBinaries>true</BuildSysBinaries> - <!-- for now only binplace the xplat bits during official builds --> - <GetAllXPlatBinaries Condition="'$(GetAllXPlatBinaries)' == '' and '$(OFFICIAL_BUILD_MACHINE)' != ''">true</GetAllXPlatBinaries> </PropertyGroup> <!-- Build in all phases --> <ItemGroup> <ProjectFile Include="src\dirs.proj" Condition="'$(BuildSysBuildOnlyForARM64)' == 'true'" /> - <ProjectFile Include="xplat\GetAllXPlatBinaries.proj" Condition="'$(GetAllXPlatBinaries)' == 'true' and '$(FeatureCoreclr)' == 'true' and '$(BuildArchitecture)' == 'amd64'" /> + <ProjectFile Include="xplat\GetAllXPlatBinaries.proj" Condition="'$(FeatureCoreclr)' == 'true' and '$(BuildArchitecture)' == 'amd64'" /> </ItemGroup> <!--Import the targets--> |