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:
authorWes Haggard <Wes.Haggard@microsoft.com>2018-03-06 00:01:26 +0300
committerWes Haggard <Wes.Haggard@microsoft.com>2018-03-06 02:30:36 +0300
commit4d03a1e3ff7f85972e298f07269209508a8f0db1 (patch)
tree3dfe8c148349801cad8763ebc6fcb9e34bb8a11e /dir.targets
parentd24fd6b72757e521cd649f9ef773d5ef043b8860 (diff)
Add option to bin place just netcoreapp package refs
If BinPlaceNETCoreAppPackage=true then both the refs and runtime assets that are part of Microsoft.NETCore.App will be bin-placed separtely. Runtime assets will be bin/pkg/netcoreapp/runtime Refs assets will be bin/ref/microsoft.netcore.app
Diffstat (limited to 'dir.targets')
-rw-r--r--dir.targets1
1 files changed, 1 insertions, 0 deletions
diff --git a/dir.targets b/dir.targets
index 8d899afd8f..a82775b2a8 100644
--- a/dir.targets
+++ b/dir.targets
@@ -38,6 +38,7 @@
<PackageFileRefPath Condition="'$(IsNETCoreAppRef)' == 'true'">$(NETCoreAppPackageRefPath)</PackageFileRefPath>
<PackageFileRuntimePath>$(NETCoreAppPackageRuntimePath)</PackageFileRuntimePath>
<RuntimePath Condition="'$(BinPlaceNETCoreAppPackage)' == 'true'">$(NETCoreAppPackageRuntimePath)\..\runtime</RuntimePath>
+ <RefPath Condition="'$(BinPlaceNETCoreAppPackage)' == 'true' AND '$(IsNETCoreAppRef)' == 'true'">$(RefRootPath)microsoft.netcore.app</RefPath>
<!-- enable trimming for any runtime project that's part of the shared framework and hasn't already set ILLinkTrimAssembly -->
<SetProperties Condition="'$(BinPlaceRuntime)' == 'true' AND '$(ILLinkTrimAssembly)' == ''">ILLinkTrimAssembly=true</SetProperties>
</BinPlaceConfiguration>