summaryrefslogtreecommitdiff
path: root/src/build.proj
diff options
context:
space:
mode:
authorJonghyun Park <parjong@gmail.com>2017-10-13 11:45:20 +0900
committerJan Kotas <jkotas@microsoft.com>2017-10-12 19:45:20 -0700
commit4cf4202f113439b4dd99bea0cb6c8618760e55d4 (patch)
treeadd628fcb92a31e4022fcfad638745f353f97653 /src/build.proj
parent06d4bc6922c7e8ea2413bfe49bf51a079f84e00c (diff)
downloadcoreclr-4cf4202f113439b4dd99bea0cb6c8618760e55d4.tar.gz
coreclr-4cf4202f113439b4dd99bea0cb6c8618760e55d4.tar.bz2
coreclr-4cf4202f113439b4dd99bea0cb6c8618760e55d4.zip
Allow not to build SOS.NETCore.dll (#14404)
* Allow not to build SOS.NETCore.dll * Automatically enable SkipSOS when a mscorlib option is given
Diffstat (limited to 'src/build.proj')
-rw-r--r--src/build.proj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.proj b/src/build.proj
index b59b00c00f..fce6571717 100644
--- a/src/build.proj
+++ b/src/build.proj
@@ -3,7 +3,7 @@
<!-- List the projects that need to be built -->
<ItemGroup>
- <Project Include="ToolBox\SOS\NETCore\SOS.NETCore.csproj" />
+ <Project Condition="$(SkipSOS) != 'true'" Include="ToolBox\SOS\NETCore\SOS.NETCore.csproj" />
<Project Include="mscorlib\System.Private.CoreLib.csproj" />
</ItemGroup>