dotnet-installer/src/redist/targets/GenerateInstallers.targets
Andy Gocke a98263b0da
Add support for building a PGO installer copy (#9877)
Uses the uninstrumented profiling PGO bits from the runtime when the
'-pgoinstrument' flag is set.
2021-03-24 01:02:14 -07:00

17 lines
558 B
XML

<Project>
<PropertyGroup>
<_BuildUnlessNoBuild Condition="'$(NoBuild)' != 'true'">Build</_BuildUnlessNoBuild>
</PropertyGroup>
<Target Name="GenerateInstallers"
Condition="'$(PgoInstrument)' != 'true'"
BeforeTargets="Pack"
DependsOnTargets="$(_BuildUnlessNoBuild);
GetCurrentRuntimeInformation;
GenerateMsis;
GeneratePkgs;
GenerateRpms;
GenerateDebs"
/>
</Project>