dotnet-installer/eng/Signing.props
Nick Guerrera 04dd2332ff Disable signing of non-shipping packages
Also clean up how $(SignCoreSdk) is set so that `build -sign` does so
and allows a full dry run locally.
2019-01-11 14:57:07 -08:00

16 lines
434 B
XML

<Project>
<ItemGroup>
<!-- Do not sign non-shipping packages -->
<ItemsToSign Remove="$(ArtifactsNonShippingPackagesDir)**\*.nupkg" />
</ItemGroup>
<PropertyGroup>
<!--
Signing of shipping artifacts (layout, msi, bundle) are handled separately.
It is therefore expected that above removal can yield an empty set.
-->
<AllowEmptySignList>true</AllowEmptySignList>
</PropertyGroup>
</Project>