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

Commit 7a76e9b

Browse files
committed
Set StrongName=None for System.Private.CoreLib
We don't ship the managed version of System.Private.CoreLib so it doesn't need a strong name signature. We always crossgen it so it is native.
1 parent e5d1eba commit 7a76e9b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/mscorlib/System.Private.CoreLib.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,8 @@
730730
<PropertyGroup>
731731
<!-- Overwrite the key that we are going to use for signing -->
732732
<AssemblyOriginatorKeyFile>$(ToolsDir)SilverlightPlatformPublicKey.snk</AssemblyOriginatorKeyFile>
733-
<StrongNameSig>Silverlight</StrongNameSig>
733+
<!-- Don't need a strong name signature because we only ship the native image -->
734+
<StrongNameSig>None</StrongNameSig>
734735
<!-- Use a different nativeresource file to avoid conflicts with mscorlib-->
735736
<Win32Resource Condition="'$(GenerateNativeVersionInfo)'=='true'">$(IntermediateOutputPath)\System.Private.CoreLib.res</Win32Resource>
736737
</PropertyGroup>

0 commit comments

Comments
 (0)