Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Fix the SOS.NETCore.dll so it is only in the list once with sn=None
Browse files Browse the repository at this point in the history
  • Loading branch information
weshaggard committed Jun 25, 2018
1 parent 6f1fc9d commit 6f0da0a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/sign.builds
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@

<!-- gather the list of binaries to sign with the default certificates -->
<ItemGroup>
<FilesToSign Include="$(BinDir)*.dll" Exclude="$(BinDir)*.ni.dll" />
<FileToNotStrongNameSign Include="$(BinDir)*.ni.dll;$(BinDir)SOS.NETCore.dll" />
<FilesToSign Include="$(BinDir)*.dll" Exclude="@(FileToNotStrongNameSign)" />
<FilesToSign Include="$(BinDir)*.exe" />
</ItemGroup>

Expand All @@ -36,7 +37,7 @@
native images which causes the signing step to fail for obvious reasons.
-->
<ItemGroup>
<FilesToSign Include="$(BinDir)*.ni.dll;$(BinDir)SOS.NETCore.dll">
<FilesToSign Include="@(FileToNotStrongNameSign)">
<StrongName>None</StrongName>
</FilesToSign>
</ItemGroup>
Expand Down

0 comments on commit 6f0da0a

Please sign in to comment.