I have a strongly named c# assembly: Strong.Named.Assembly.dll. It has the attribute InternalsVisibleTo
with its public key, for another assembly: [assembly: InternalsVisibleTo("Another.Assembly, PublicKey=xxx")]
. The Anoter.Assembly
has not been signed. And so I was not able to reference classes in the Strong.Named.Assembly
until I singed the Another.Assembly
, too.
Why isn't it possible to show to internals of a strongly named assembly to a not signed one?