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>2016-12-08 00:29:34 +0300
committerEric St. John <ericstj@microsoft.com>2016-12-08 20:58:44 +0300
commit5cef65d8a3363592d06caf2bc4e36e5dc2a3a5b4 (patch)
treec7832d66c9675205aecf334c1483f21926512f81 /Packaging.props
parentefafe7519ea58f1c6eb506eee8e4c037a097eb8f (diff)
Binplace NETCoreApp package contents
Set up a separate destination for package contents for NETCoreApp since it won't necessarily be everything that we build. Libraries were determined as follows: 1. If its currently in NETStandard.Library its in. 2. If it was a ref in NETCoreApp before its in. 3. If its part of the reference closure for 1 or 2 its in. 4. If it was a lib only in NETCoreApp its in, but only lib. 5. If its part of the lib closure for 1-4 its in, but only lib.
Diffstat (limited to 'Packaging.props')
-rw-r--r--Packaging.props2
1 files changed, 2 insertions, 0 deletions
diff --git a/Packaging.props b/Packaging.props
index 18ca33e991..182ccd7379 100644
--- a/Packaging.props
+++ b/Packaging.props
@@ -23,6 +23,8 @@
<PackageVersion Condition="'$(PackageVersion)' == ''">4.4.0</PackageVersion>
<SkipValidatePackageTargetFramework>true</SkipValidatePackageTargetFramework>
<SkipGenerationCheck>true</SkipGenerationCheck>
+ <!-- disable layout creation in favor of binplacing -->
+ <ShouldCreateLayout>false</ShouldCreateLayout>
</PropertyGroup>
<Import Condition="Exists('pkg/baseline/baseline.props') AND '$(MSBuildProjectExtension)' == '.pkgproj'" Project="pkg/baseline/baseline.props" />