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:
authorJose Perez Rodriguez <joperezr@microsoft.com>2018-03-08 20:43:06 +0300
committerGitHub <noreply@github.com>2018-03-08 20:43:06 +0300
commit7be44d2de8661cd925955e540d940b4eb47e5753 (patch)
tree21c8e2facb1e3d930ae6e35028818d4daa438797 /dir.targets
parentb43797298b7cad224e5ab181f5506ee903845624 (diff)
Updating the package index for UAP and updating buildtools (#27787)
* Updating the package index for UAP and updating buildtools * Having System.Reflection.DispatchProxy crosscompile for uap RS3 * Updating buildtools and fixing PR feedback * Re-add support for uap to the assemblies that already had a netcoreapp2.0 config for Windows
Diffstat (limited to 'dir.targets')
-rw-r--r--dir.targets4
1 files changed, 4 insertions, 0 deletions
diff --git a/dir.targets b/dir.targets
index a82775b2a8..a51322bbf7 100644
--- a/dir.targets
+++ b/dir.targets
@@ -76,6 +76,10 @@
<BinPlaceConfiguration Condition="'$(BuildingNETCoreAppVertical)' == 'true'" Include="netcoreapp2.0">
<RefPath>$(RefRootPath)netcoreapp2.0/</RefPath>
</BinPlaceConfiguration>
+ <!-- some libraries that produce packages will remain targeting uap10.0.16299 -->
+ <BinPlaceConfiguration Condition="'$(BuildingUAPVertical)' == 'true' OR '$(BuildingUAPAOTVertical)' == 'true'" Include="uap10.0.16299">
+ <RefPath>$(RefRootPath)uap10.0.16299/</RefPath>
+ </BinPlaceConfiguration>
<!-- for BuildAllConfigurations make sure all refpaths are created. -->
<_TargetGroupsWithIsAot Condition="'$(BuildAllConfigurations)' == 'true'" Include="@(TargetGroups)">
<IsAot>$([System.String]::new('%(Identity)').Contains('aot'))</IsAot>