Browse Source

Use Microsoft400 for code signing CAB, MSI, and installer bundles (#1433)

Nate McMaster 7 years ago
parent
commit
c9747bcf6b
1 changed files with 10 additions and 1 deletions
  1. 10 1
      eng/targets/Wix.Common.targets

+ 10 - 1
eng/targets/Wix.Common.targets

@@ -2,10 +2,19 @@
 <Project>
 
   <ItemDefinitionGroup>
+    <!-- Override the MicroBuild default certs which still uses MicrosoftSHA1 and Microsoft401 -->
+    <SignCabs>
+      <Authenticode>Microsoft400</Authenticode>
+    </SignCabs>
     <SignMsi>
-      <!-- Override the MicroBuild default which still uses MicrosoftSHA1 -->
       <Authenticode>Microsoft400</Authenticode>
     </SignMsi>
+    <SignBundle>
+      <Authenticode>Microsoft400</Authenticode>
+    </SignBundle>
+    <SignBundleEngine>
+      <Authenticode>Microsoft400</Authenticode>
+    </SignBundleEngine>
   </ItemDefinitionGroup>
 
   <ItemGroup>