File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/Installer/redist-installer Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 14
14
<Import Project =" targets\BundledManifests.targets" />
15
15
<Import Project =" targets\BundledDotnetTools.targets" />
16
16
<Import Project =" targets\GenerateBundledVersions.targets" />
17
- <Import Project =" targets\Crossgen.targets" />
17
+ <!-- Crossgen is currently not supported on the s390x, ppc64le architecture as using mono instead of CoreCLR. -->
18
+ <Import Project =" targets\Crossgen.targets"
19
+ Condition =" '$(DISABLE_CROSSGEN)' == '' AND '$(Architecture)' != 's390x' AND '$(Architecture)' != 'ppc64le'" />
18
20
<Import Project =" targets\GenerateLayout.targets" />
19
21
<Import Project =" targets\GenerateArchives.targets" Condition =" '$(PackInstaller)' != 'false'" />
20
22
<Import Project =" targets\GenerateMSIs.targets" />
Original file line number Diff line number Diff line change 12
12
<PackageDownload Include =" $(RuntimeNETCrossgenPackageName)" Version =" [$(MicrosoftNETCoreAppRuntimePackageVersion)]" />
13
13
</ItemGroup >
14
14
15
- <!-- Crossgen is currently not supported on the s390x, ppc64le architecture as using mono instead of CoreCLR. -->
16
- <Target Name =" CrossgenLayout"
17
- Condition =" '$(DISABLE_CROSSGEN)' == '' AND '$(Architecture)' != 's390x' AND '$(Architecture)' != 'ppc64le'" >
15
+ <Target Name =" CrossgenLayout" >
18
16
<PropertyGroup >
19
17
<CrossgenPath >$(NuGetPackageRoot)$(RuntimeNETCrossgenPackageName)/$(MicrosoftNETCoreAppRuntimePackageVersion)/tools/crossgen2$(ExeExtension)</CrossgenPath >
20
18
<CreateCrossgenSymbols Condition =" '$(CreateCrossgenSymbols)' == ''" >true</CreateCrossgenSymbols >
You can’t perform that action at this time.
0 commit comments