Add comments explaining why these targets are disabled

Clean up the run-build script
This commit is contained in:
Marc Paine 2023-11-09 13:26:53 -08:00
parent 577b7aab27
commit ca5f6b0077
3 changed files with 3 additions and 4 deletions

View file

@ -1,5 +1,6 @@
<Project>
<!-- Crossgen is currently not supported on the s390x, ppc64le architecture as using mono instead of CoreCLR. -->
<!-- Disable the cross-gen step in the local dev build, only do when -pack is specified to speed up dev builds -->
<Target Name="CrossgenLayout"
Condition="'$(DISABLE_CROSSGEN)' == '' AND '$(Architecture)' != 's390x' AND '$(Architecture)' != 'ppc64le' AND '$(PackInstaller)' == 'true'"
DependsOnTargets="SetSdkBrandingInfo">

View file

@ -1,4 +1,5 @@
<Project>
<!-- Disable the GenerateArchives step in the local dev build, only do when -pack is specified to speed up dev builds -->
<Target Name="GenerateArchives"
Condition="'$(PackInstaller)' == 'true'"
DependsOnTargets="GenerateLayout;GetCurrentRuntimeInformation"