
Also clean up how $(SignCoreSdk) is set so that `build -sign` does so and allows a full dry run locally.
16 lines
434 B
XML
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>
|