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:
authorIan Hays <ianha@microsoft.com>2017-07-06 22:31:35 +0300
committerIan Hays <ianha@microsoft.com>2017-07-06 22:31:35 +0300
commit0a8d3bec34f98d95d8fce59f2c1df68c85855d09 (patch)
tree0c8312919b528dc78efab881ec6155a27058d007 /pkg/frameworkPackage.targets
parente48ef36943e44d0944bec76f23931da2245b8576 (diff)
Fix uap package clrcompression import
The UAP AOT packages were taking a clrcompression that did not have the appx bit enabled.
Diffstat (limited to 'pkg/frameworkPackage.targets')
-rw-r--r--pkg/frameworkPackage.targets1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/frameworkPackage.targets b/pkg/frameworkPackage.targets
index a775cb74b4..9ad67dee47 100644
--- a/pkg/frameworkPackage.targets
+++ b/pkg/frameworkPackage.targets
@@ -17,6 +17,7 @@
<LibFileTargetPath Condition="'$(LibFileTargetPath)' == '' AND '$(PackageTargetRuntime)' != ''">runtimes/$(PackageTargetRuntime)/lib/$(TargetFramework)</LibFileTargetPath>
<NativeFileTargetPath Condition="'$(NativeFileTargetPath)' == '' AND '$(PackageTargetRuntime)' != ''">runtimes/$(PackageTargetRuntime)/native</NativeFileTargetPath>
+ <NativeBinDir Condition="'$(PackageTargetRuntime)' != '' AND $(PackageTargetRuntime.EndsWith('aot'))">$(NativeBinDir)_aot</NativeBinDir>
</PropertyGroup>
<!-- Bring in ref content from binplaced ref props -->