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:
authorJoel Hendrix <jhendrix@microsoft.com>2016-08-11 00:44:35 +0300
committerJoel Hendrix <jhendrix@microsoft.com>2016-08-11 00:44:35 +0300
commit0cb5905fb07d401ab2b04f886cb55e6764dc327f (patch)
tree397aff15f060fb7f2df841df566ed81d1d9602ea /dir.targets
parent304c7556c76939cbbeba3047d559fd990bc52900 (diff)
Include test-runtime project.json in test archives.
As part of automating stress test builds include the test-runtime project.json file in the test archives; this requires a build tools update to pick up the new functionality.
Diffstat (limited to 'dir.targets')
-rw-r--r--dir.targets11
1 files changed, 11 insertions, 0 deletions
diff --git a/dir.targets b/dir.targets
index 6b16e9886d..c43fd173d2 100644
--- a/dir.targets
+++ b/dir.targets
@@ -45,4 +45,15 @@
<!-- We set this property to avoid MSBuild errors regarding not setting TargetFrameworkProfile (see above line) -->
<PortableNuGetMode>true</PortableNuGetMode>
</PropertyGroup>
+
+ <!--
+ add the test-runtime project.json to the list of supplemental test data so it will get included
+ in the test archive; the stress test build system depends on it when building test mixes.
+ -->
+ <ItemGroup Condition="'$(IsTestProject)'=='true'">
+ <SupplementalTestData Include="$(SourceDir)Common/test-runtime/project.json">
+ <DestinationDir>test-runtime/</DestinationDir>
+ </SupplementalTestData>
+ </ItemGroup>
+
</Project>