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-02 00:41:56 +0300
committerEric St. John <ericstj@microsoft.com>2017-02-02 05:27:15 +0300
commit36a7f40e06aa5bd2bb04afe14f23f32aca8a68b7 (patch)
tree1073f81cdd0a9e373a68d066b3ce507bb514b3a4 /external/portable/portable.depproj
parent8216d8e1603546bbe88a26e148be4bb54d8f1f67 (diff)
Make external use binplacing
This switches the external dir to binplace rather than copy to output. This is more flexible as it will conditionally binplace to many locations based on what's needed for the configuration.
Diffstat (limited to 'external/portable/portable.depproj')
-rw-r--r--external/portable/portable.depproj8
1 files changed, 7 insertions, 1 deletions
diff --git a/external/portable/portable.depproj b/external/portable/portable.depproj
index e079484cea..8d96954c9c 100644
--- a/external/portable/portable.depproj
+++ b/external/portable/portable.depproj
@@ -2,10 +2,16 @@
<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>
<NuGetDeploySourceItem>Reference</NuGetDeploySourceItem>
<NugetRuntimeIdentifier>None</NugetRuntimeIdentifier>
- <OutputPath>$(RefRootPath)/$(TargetGroup)</OutputPath>
</PropertyGroup>
+ <ItemGroup>
+ <!-- for all configurations this project provides refs for that configuration -->
+ <BinplaceConfiguration Include="$(Configuration)">
+ <RefPath>$(RefPath)</RefPath>
+ </BinplaceConfiguration>
+ </ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
<Target Name="FilterTargetingPackResolvedNugetPackages" />
</Project> \ No newline at end of file