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

Commit c7e321e

Browse files
authored
Add files that don't match the System.*/Microsoft.* pattern to list of files to sign. (#2221)
Add files that don't match the System.*/Microsoft.* pattern to list of files to sign. Also remove dotnet.exe as that should not be signed.
1 parent 8a5037b commit c7e321e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build_projects/dotnet-host-build/sign.proj

+6
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,15 @@
4444

4545
<Target Name="GetSignSharedFrameworkCrossgenedAssembliesFiles">
4646
<ItemGroup>
47+
<FilesToSign Include="$(IntermediateOutputPath)sharedFrameworkPublish/shared/**/clrcompression.dll">
48+
<Authenticode>$(CertificateId)</Authenticode>
49+
</FilesToSign>
4750
<FilesToSign Include="$(IntermediateOutputPath)sharedFrameworkPublish/shared/**/Microsoft.*.dll">
4851
<Authenticode>$(CertificateId)</Authenticode>
4952
</FilesToSign>
53+
<FilesToSign Include="$(IntermediateOutputPath)sharedFrameworkPublish/shared/**/SOS.NETCore.dll">
54+
<Authenticode>$(CertificateId)</Authenticode>
55+
</FilesToSign>
5056
<FilesToSign Include="$(IntermediateOutputPath)sharedFrameworkPublish/shared/**/System.*.dll">
5157
<Authenticode>$(CertificateId)</Authenticode>
5258
</FilesToSign>

0 commit comments

Comments
 (0)