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 St. John <ericstj@microsoft.com>2017-01-19 23:47:35 +0300
committerEric St. John <ericstj@microsoft.com>2017-01-20 00:20:38 +0300
commitdabc62c7f97aa561fd40e719efcc0a0ada46bee6 (patch)
tree055b80f42bc418ca6ba2af30bdb74142d7c6011e /external/dir.proj
parent9445fa5e360a954c6dc009f170d21d8688407405 (diff)
Use BuildConfigurations for external
This modifies our external projects to use the configuration system. To make this work I had to remove a stale condition in buildvertical.targets. I also noticed that unlike `netcoreapp` which mapped to `netstandard`, `netfx` was mapping to `nestandard2.0`. This meant that when building for `netfx`, `netstandard` configurations would be ignored, which is wrong.
Diffstat (limited to 'external/dir.proj')
-rw-r--r--external/dir.proj4
1 files changed, 2 insertions, 2 deletions
diff --git a/external/dir.proj b/external/dir.proj
index 2e51f70b75..06e5f90ff2 100644
--- a/external/dir.proj
+++ b/external/dir.proj
@@ -4,8 +4,8 @@
<!-- Build for all configurations -->
<ItemGroup>
<Project Include="coreclr/coreclr.depproj" />
- <Project Include="netstandard20/netstandard20.depproj" />
- <Project Include="net461/net461.depproj" />
+ <Project Include="netstandard/netstandard.depproj" />
+ <Project Include="netfx/netfx.depproj" />
<Project Include="test-runtime/XUnit.Runtime.depproj" />
</ItemGroup>