We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82adf77 commit 2fd9b39Copy full SHA for 2fd9b39
eng/Signing.props
@@ -28,4 +28,20 @@
28
<FileSignInfo Include="Microsoft.Deployment.WindowsInstaller.dll" CertificateName="3PartySHA2" />
29
<FileSignInfo Include="Microsoft.Deployment.WindowsInstaller.Package.dll" CertificateName="3PartySHA2" />
30
</ItemGroup>
31
+
32
+ <!--
33
+ Arcade does not contribute any artifacts that will be redisted by shipping packages in other components
34
+ while building the VMR. Therefore, we can safely skip signing the artifacts.
35
+ -->
36
+ <Choose>
37
+ <When Condition="'$(DotNetBuild)' == 'true'">
38
+ <ItemGroup>
39
+ <ItemsToSign Remove="@(ItemsToSign)" />
40
+ </ItemGroup>
41
42
+ <PropertyGroup>
43
+ <AllowEmptySignList>true</AllowEmptySignList>
44
+ </PropertyGroup>
45
+ </When>
46
+ </Choose>
47
</Project>
0 commit comments