我遇到了交叉装配/朋友装配类型可见性的问题。
我有以下程序(我签名/强名称)。它告诉 Castle DynamicProxy(我使用的是Castle.Core
NuGet 包的 4.2.1 版本)为我的 interface 创建一个代理IFoo
。我还指定 myinternal class InterfaceProxyBase
应该是代理类型的基类。
DynamicProxy 然后用于System.Reflection.Emit
创建代理类型。但显然,System.Reflection.Emit.TypeBuilder
无法访问InterfaceProxyBase
.
// [assembly: InternalsVisibleTo("?")]
// ^^^
// What do I need here for my program to work both on the .NET Framework 4.5+
// and on .NET Core / .NET Standard 1.3+?
using Castle.DynamicProxy;
class Program
{
static void Main()
{
var generator = new ProxyGenerator();
var options = new ProxyGenerationOptions
{
BaseTypeForInterfaceProxy = typeof(InterfaceProxyBase) // <--
};
var proxy = generator.CreateInterfaceProxyWithoutTarget(
typeof(IFoo),
options,
new Interceptor());
}
}
public interface IFoo { }
internal abstract class InterfaceProxyBase { }
internal sealed class Interceptor : IInterceptor
{
public void Intercept(IInvocation invocation) { }
}
Unhandled Exception: System.TypeLoadException: Access is denied: 'InterfaceProxyBase'.
at System.Reflection.Emit.TypeBuilder.TermCreateClass(RuntimeModule module, Int32 tk, ObjectHandleOnStack type)
...
at Castle.DynamicProxy.ProxyGenerator.CreateInterfaceProxyWithoutTarget(Type interfaceToProxy, ProxyGenerationOptions options, IInterceptor[] interceptors)
at Program.Main() in Program.cs
所以,显然我需要一个[assembly: InternalsVisibleTo]
框架自己的程序集/程序集的属性。我的程序(实际上是一个类库)同时针对 .NET 4.5 和 .NET Standard 1.3。
我需要哪些[assembly: InternalsVisibleTo]
属性(包括精确的公钥)才能使我的代码适用于上述平台/目标?
PS:我知道我可以通过InterfaceProxyBase
公开并[EditorBrowsable(Never)]
为了外观而隐藏它来规避这个问题,但如果我不需要,我真的不想公开这种内部类型。
PPS:如果将内部结构公开给框架程序集是一个非常糟糕的主意,出于安全考虑,请告诉我,然后我会很高兴地重新考虑我的方法。