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-02-03 02:56:32 +0300
committerEric St. John <ericstj@microsoft.com>2017-02-03 19:32:14 +0300
commit843cc24cf013c49c998f24eb43d5f32185a416b2 (patch)
tree53ba06ab9cfaf3d4f6e80b582245d76ad550e4a0 /src/shims/shims.proj
parentfb3057454da0c7603e8151286cfd6dadb6a4a022 (diff)
Shims should binplace to config-specific RefPath
Previously they were binplacing to the BuildConfiguration-specific RefPath incorrectly. We caught this in BuildAllConfigurations. We were overwriting netcoreapp shims with those from uap.
Diffstat (limited to 'src/shims/shims.proj')
-rw-r--r--src/shims/shims.proj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shims/shims.proj b/src/shims/shims.proj
index 714053a426..626eb1847a 100644
--- a/src/shims/shims.proj
+++ b/src/shims/shims.proj
@@ -73,7 +73,7 @@
<ItemGroup>
<PackageOutputPaths Include="$(BinDir)$(TargetGroup)/pkg/ref" />
<PackageOutputPaths Include="$(BinDir)$(TargetGroup)/pkg/lib" />
- <PackageOutputPaths Include="$(BuildConfigurationRefPath)" />
+ <PackageOutputPaths Include="$(RefPath)" />
<PackageOutputPaths Include="$(RuntimePath)" />
<ProducedFacades Include="$(GenFacadesOutputPath)*.dll" />
<FileWrites Include="@(ProducedFacades)" />