Disable crossgen and zip file creation in the local dev build unless -pack is used
This commit is contained in:
parent
62b7bdec2a
commit
d5ed66a106
3 changed files with 3 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Target Name="PopulateGenerateChecksumItems"
|
<Target Name="PopulateGenerateChecksumItems"
|
||||||
|
Condition="'$(Pack)' == 'true'"
|
||||||
AfterTargets="Build"
|
AfterTargets="Build"
|
||||||
BeforeTargets="GenerateChecksums" >
|
BeforeTargets="GenerateChecksums" >
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<Project>
|
<Project>
|
||||||
<!-- Crossgen is currently not supported on the s390x, ppc64le architecture as using mono instead of CoreCLR. -->
|
<!-- Crossgen is currently not supported on the s390x, ppc64le architecture as using mono instead of CoreCLR. -->
|
||||||
<Target Name="CrossgenLayout"
|
<Target Name="CrossgenLayout"
|
||||||
Condition="'$(DISABLE_CROSSGEN)' == '' AND '$(Architecture)' != 's390x' AND '$(Architecture)' != 'ppc64le'"
|
Condition="'$(DISABLE_CROSSGEN)' == '' AND '$(Architecture)' != 's390x' AND '$(Architecture)' != 'ppc64le' AND '$(Pack)' == 'true'"
|
||||||
DependsOnTargets="SetSdkBrandingInfo">
|
DependsOnTargets="SetSdkBrandingInfo">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
<Project>
|
<Project>
|
||||||
<Target Name="GenerateArchives"
|
<Target Name="GenerateArchives"
|
||||||
|
Condition="'$(Pack)' == 'true'"
|
||||||
DependsOnTargets="GenerateLayout;GetCurrentRuntimeInformation"
|
DependsOnTargets="GenerateLayout;GetCurrentRuntimeInformation"
|
||||||
BeforeTargets="AfterBuild">
|
BeforeTargets="AfterBuild">
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue