Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHao Kung <HaoK@users.noreply.github.com>2022-01-08 03:15:28 +0300
committerGitHub <noreply@github.com>2022-01-08 03:15:28 +0300
commitc8c1700877900a939f06a5f3f07fd9073c371ae3 (patch)
treef06e501ff87e9804d00f5c608a987e73bf837dfb /Directory.Build.props
parent694507a5d24fd858dff8231829e42fb21acbe9b9 (diff)
Build ARM64 in main windows build job (#38997)
Diffstat (limited to 'Directory.Build.props')
-rw-r--r--Directory.Build.props4
1 files changed, 2 insertions, 2 deletions
diff --git a/Directory.Build.props b/Directory.Build.props
index e4139483cc..e100d883e9 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -224,8 +224,8 @@
<!-- Projects which reference Microsoft.AspNetCore.Mvc.Testing should import this targets file to ensure dependency .deps.json files are copied into test output. -->
<MvcTestingTargets>$(MSBuildThisFileDirectory)src\Mvc\Mvc.Testing\src\Microsoft.AspNetCore.Mvc.Testing.targets</MvcTestingTargets>
<_MvcTestingTasksAssembly>$(ArtifactsBinDir)\Microsoft.AspNetCore.Mvc.Testing.Tasks\$(Configuration)\netstandard2.0\Microsoft.AspNetCore.Mvc.Testing.Tasks.dll</_MvcTestingTasksAssembly>
- <!-- IIS native projects can only be built on Windows for x86 and x64. -->
- <BuildIisNativeProjects Condition=" '$(TargetOsName)' == 'win' AND ('$(TargetArchitecture)' == 'x86' OR '$(TargetArchitecture)' == 'x64') ">true</BuildIisNativeProjects>
+ <!-- IIS native projects can only be built on Windows for x86/x64/ARM64. -->
+ <BuildIisNativeProjects Condition=" '$(TargetOsName)' == 'win' AND ('$(TargetArchitecture)' == 'x86' OR '$(TargetArchitecture)' == 'x64' OR '$(TargetArchitecture)' == 'ARM64') ">true</BuildIisNativeProjects>
<!-- This property is shared by several projects to layout the AspNetCore.App targeting pack for installers -->
<TargetingPackLayoutRoot>$(ArtifactsObjDir)TargetingPack.Layout\$(Configuration)\</TargetingPackLayoutRoot>
<!-- This property is shared by several projects to layout the AspNetCore.App shared framework for installers -->