You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dynamically generated assemblies reference System.Private.CoreLib assembly first. System.Private.CoreLib public key token is same as mscorlib. Since, .NET Core is fundamentally different from .NET Framework (.NET Core supports side-by-side runtime), we shouldn't reference mscorlib first. Instead, we should reference System.Runtime assembly which we should extract at its metadata at runtime. Also, we should map all mscorlib and System.Private.CoreLib references to System.Runtime.
The text was updated successfully, but these errors were encountered:
Dynamically generated assemblies reference
System.Private.CoreLib
assembly first.System.Private.CoreLib
public key token is same asmscorlib
. Since, .NET Core is fundamentally different from .NET Framework (.NET Core supports side-by-side runtime), we shouldn't referencemscorlib
first. Instead, we should referenceSystem.Runtime
assembly which we should extract at its metadata at runtime. Also, we should map allmscorlib
andSystem.Private.CoreLib
references toSystem.Runtime
.The text was updated successfully, but these errors were encountered: