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
In Importer.CreateScopeReference, it changes public key to tokens via ToPublicKeyToken. However, the attribute that has AssemblyAttributes.PublicKey remains unchanged. Changing the attribute copying to Attributes = defAsm.Attributes & ~AssemblyAttributes.PublicKey fix it for me.
The text was updated successfully, but these errors were encountered:
In
Importer.CreateScopeReference
, it changes public key to tokens viaToPublicKeyToken
. However, the attribute that hasAssemblyAttributes.PublicKey
remains unchanged. Changing the attribute copying toAttributes = defAsm.Attributes & ~AssemblyAttributes.PublicKey
fix it for me.The text was updated successfully, but these errors were encountered: