summaryrefslogtreecommitdiff
path: root/dir.props
diff options
context:
space:
mode:
authorGaurav Khanna <gkhanna@microsoft.com>2016-06-24 16:43:19 -0700
committerGaurav Khanna <gkhanna@microsoft.com>2016-06-25 00:33:02 -0700
commit9ff3d839483266e5c173b77d3df1c82fa0cf1ab4 (patch)
tree281536d18acef31a8f658945829a0ba2cd4d83e9 /dir.props
parent8e958879ebadab7760c8368e070d34f3b7cf6950 (diff)
downloadcoreclr-9ff3d839483266e5c173b77d3df1c82fa0cf1ab4.tar.gz
coreclr-9ff3d839483266e5c173b77d3df1c82fa0cf1ab4.tar.bz2
coreclr-9ff3d839483266e5c173b77d3df1c82fa0cf1ab4.zip
Change to Generate nuget packages for Windows Arm64 builds.
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props10
1 files changed, 9 insertions, 1 deletions
diff --git a/dir.props b/dir.props
index a46fb65af4..3aa767137d 100644
--- a/dir.props
+++ b/dir.props
@@ -144,7 +144,7 @@
<PackageThirdPartyNoticesFile>$(SourceDir).nuget/ThirdPartyNotices.txt</PackageThirdPartyNoticesFile>
<!-- This should be kept in sync with package details in src/.nuget/init/project.json -->
- <RuntimeIdGraphDefinitionFile>$(PackagesDir)/Microsoft.NETCore.Platforms/1.0.1-rc2-23712/runtime.json</RuntimeIdGraphDefinitionFile>
+ <RuntimeIdGraphDefinitionFile>$(PackagesDir)/Microsoft.NETCore.Platforms/1.0.2-beta-24224-02/runtime.json</RuntimeIdGraphDefinitionFile>
<!-- This link should be updated for each release milestone, currently this points to 1.1.0-beta -->
<ReleaseNotes>https://go.microsoft.com/fwlink/?LinkID=799421</ReleaseNotes>
@@ -162,6 +162,14 @@
<!-- defined in buildtools packaging.targets, but we need this before targets are imported -->
<PackagePlatform Condition="'$(PackagePlatform)' == ''">$(Platform)</PackagePlatform>
<PackagePlatform Condition="'$(PackagePlatform)' == 'amd64'">x64</PackagePlatform>
+ <MinOSForArch>win7</MinOSForArch>
+ <MinOSForArch Condition="'$(PackagePlatform)' == 'arm'">win8</MinOSForArch>
+ <MinOSForArch Condition="'$(PackagePlatform)' == 'arm64'">win10</MinOSForArch>
+
+ <!-- Arm64 cross target components are x64 hosted -->
+ <HasCrossTargetComponents Condition="'$(PackagePlatform)' =='arm64'">true</HasCrossTargetComponents>
+ <CrossTargetComponentFolder Condition="'$(PackagePlatform)' == 'arm64'">x64</CrossTargetComponentFolder>
+
<PackageOutputPath>$(PackagesBinDir)/pkg/</PackageOutputPath>
<SymbolPackageOutputPath>$(PackagesBinDir)/symbolpkg/</SymbolPackageOutputPath>
</PropertyGroup>