Exclude Mono.Cecil assemblies from signing (#41325)
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Tue, 25 Aug 2020 13:53:28 +0000 (15:53 +0200)
committerGitHub <noreply@github.com>
Tue, 25 Aug 2020 13:53:28 +0000 (15:53 +0200)
We're just shipping them in the Microsoft.NETCore.BrowserDebugHost.Transport package.

eng/Signing.props

index 34821db..5b7461f 100644 (file)
     <ItemGroup>
       <!-- External files -->
       <ItemsToSign Remove="@(ItemsToSign->WithMetadataValue('Filename', 'Newtonsoft.Json'))" />
+      <ItemsToSign Remove="@(ItemsToSign->WithMetadataValue('Filename', 'Mono.Cecil'))" />
+      <ItemsToSign Remove="@(ItemsToSign->WithMetadataValue('Filename', 'Mono.Cecil.Pdb'))" />
+      <ItemsToSign Remove="@(ItemsToSign->WithMetadataValue('Filename', 'Mono.Cecil.Rocks'))" />
     </ItemGroup>
 
     <ItemGroup>