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
diff options
context:
space:
mode:
authorJonathan Miller <jonmill@microsoft.com>2016-03-31 21:41:43 +0300
committerJonathan Miller <jonmill@microsoft.com>2016-03-31 21:41:43 +0300
commite8326c3dab65e2e8eac466f346a9693788d41ca9 (patch)
tree764612fb219075fcc43cc2ae5771344b747315db /build.proj
parent5814734d859783c65c5083c5af30998cf2093756 (diff)
parent752599494fce80b5d0059a9090fdc010d8c7f45b (diff)
Merge pull request #6572 from sokket/builds
Adding builds files to the test projects
Diffstat (limited to 'build.proj')
-rw-r--r--build.proj9
1 files changed, 8 insertions, 1 deletions
diff --git a/build.proj b/build.proj
index 7eb8e138ad..f815a267c2 100644
--- a/build.proj
+++ b/build.proj
@@ -4,6 +4,10 @@
<!-- Capture OSGroup passed to command line for setting default FilterToOSGroup value below -->
<_OriginalOSGroup>$(OSGroup)</_OriginalOSGroup>
</PropertyGroup>
+ <PropertyGroup>
+ <InputOSGroup>$(OSGroup)</InputOSGroup>
+ <InputOSGroup Condition="'$(InputOSGroup)'==''">$(FilterToOSGroup)</InputOSGroup>
+ </PropertyGroup>
<Import Project="dir.props" />
<!-- required to build the projects in their specified order -->
@@ -25,8 +29,11 @@
<Project Include="src\dirs.proj">
<!-- For the root traversal default filter the OSGroup to the OSEnvironment which is the OS we are running on -->
<FilterToOSGroup Condition="'$(_OriginalOSGroup)' == ''">$(OSEnvironment)</FilterToOSGroup>
+ <InputOSGroup>$(InputOSGroup)</InputOSGroup>
+ </Project>
+ <Project Include="src\tests.builds" Condition="$(BuildTests)=='true'">
+ <InputOSGroup>$(InputOSGroup)</InputOSGroup>
</Project>
- <Project Include="src\tests.builds" Condition="$(BuildTests)=='true'"/>
<!-- signing must happen before packaging -->
<Project Include="src\sign.builds" />
<Project Include="src\packages.builds" Condition="'$(BuildPackages)'=='true'"/>