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 00:48:02 +0300
committerEric St. John <ericstj@microsoft.com>2017-02-03 19:30:56 +0300
commit179336006d4e137d6f897ce041a408f63bbee631 (patch)
tree975b2e4f60e7847d8fe161362c82eae97bd330b7 /external/portable/portable.depproj
parent36c0d5a6724b43781fa1ab0581b030ea6420af45 (diff)
Don't use IsReferenceAssembly for binplacing
IsReferenceAssembly has other side-effects, like trimming out any packages that aren't directly referenced. Instead of using this to control binplacing for ref, use BinPlaceRef property directly. This fixes an issue where our netstandard1.x targeting pack folders were missing all but System.Diagnostics.Contracts.
Diffstat (limited to 'external/portable/portable.depproj')
-rw-r--r--external/portable/portable.depproj2
1 files changed, 1 insertions, 1 deletions
diff --git a/external/portable/portable.depproj b/external/portable/portable.depproj
index e95580817f..3521f89523 100644
--- a/external/portable/portable.depproj
+++ b/external/portable/portable.depproj
@@ -2,7 +2,7 @@
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
- <IsReferenceAssembly>true</IsReferenceAssembly>
+ <BinPlaceRef>true</BinPlaceRef>
<NuGetDeploySourceItem>Reference</NuGetDeploySourceItem>
<NugetRuntimeIdentifier>None</NugetRuntimeIdentifier>
</PropertyGroup>