Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2020-08-25 16:53:28 +0300
committerGitHub <noreply@github.com>2020-08-25 16:53:28 +0300
commit25e20983b193763bbc078d452c84cdd90e5c3efc (patch)
treec4c30a29c11ebca869f19ea58832a33fc3adceec /eng/Signing.props
parentc72d522e91a91a5122de82deaed38727a4d6612f (diff)
Exclude Mono.Cecil assemblies from signing (#41325)
We're just shipping them in the Microsoft.NETCore.BrowserDebugHost.Transport package.
Diffstat (limited to 'eng/Signing.props')
-rw-r--r--eng/Signing.props3
1 files changed, 3 insertions, 0 deletions
diff --git a/eng/Signing.props b/eng/Signing.props
index 34821db7fc4..5b7461f9609 100644
--- a/eng/Signing.props
+++ b/eng/Signing.props
@@ -111,6 +111,9 @@
<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>