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:
authorEric Mellino <erme@microsoft.com>2016-12-08 23:18:54 +0300
committerGitHub <noreply@github.com>2016-12-08 23:18:54 +0300
commit27811886f0d28f950380419265276d1dadfca924 (patch)
tree16d9314184efbe2d508388f8f19bc30a53a1300e /binplace.targets
parent851f6e9aad1e5658e5406f9c5f79f95a03701d68 (diff)
Start overhauling test build process. (#14277)
* Make System.Console.Tests build against the targeting pack. * Make System.Runtime.Numerics.Tests build against the targeting pack.
Diffstat (limited to 'binplace.targets')
-rw-r--r--binplace.targets2
1 files changed, 1 insertions, 1 deletions
diff --git a/binplace.targets b/binplace.targets
index fbd0d252b4..e3cea73f7c 100644
--- a/binplace.targets
+++ b/binplace.targets
@@ -2,7 +2,7 @@
<Project ToolsVersion="14.0" InitialTargets="CheckForBuildTools" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
- <IsRuntimeAssembly Condition="'$(IsRuntimeAssembly)'=='' AND '$(IsReferenceAssembly)' != 'true'">true</IsRuntimeAssembly>
+ <IsRuntimeAssembly Condition="'$(IsRuntimeAssembly)'=='' AND '$(IsReferenceAssembly)' != 'true' AND '$(IsTestProject)' != 'true'">true</IsRuntimeAssembly>
<!-- Try to determine if this is a simple library without a ref project.
https://github.com/dotnet/corefx/issues/14291 is tracking cleaning this up -->
<IsRuntimeAndReferenceAssembly Condition="'$(IsRuntimeAndReferenceAssembly)' == '' and '$(IsRuntimeAssembly)' == 'true' and Exists('$(SourceDir)/$(AssemblyName)') and !Exists('$(SourceDir)/$(AssemblyName)/ref') and !$(AssemblyName.StartsWith('System.Private'))">true</IsRuntimeAndReferenceAssembly>