我遇到跨装配/朋友装配类型可见性的问题。
我有以下程序(我签名/强名)。它告诉Castle DynamicProxy(我正在使用Castle.Core
NuGet包的4.2.1版)来为我的接口IFoo
创建一个代理。我还指定我的internal 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]
属性(包括精确的公钥)才能使我的代码适用于上述平台/目标?
InterfaceProxyBase
公开并将其隐藏在[EditorBrowsable(Never)]
出于好看而绕过这个问题,但我真的不想让这个内部类型公开不必。
P.P.S。:如果将内部公开给框架集会是一个非常糟糕的想法,安全方面,请让我知道,然后我会高兴地重新考虑我的方法。
答案 0 :(得分:4)
您应为InternalsVisibleTo
设置DynamicProxyGenAssembly2
:
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
DynamicProxyGenAssembly2
是由Castle.DynamicProxy
构建的临时程序集。此程序集包含从InterfaceProxyBase
继承的生成的代理类型。这就是DynamicProxyGenAssembly2
应该有InterfaceProxyBase
类型访问权限的原因。可能的选项是添加InternalsVisibleTo
属性或将InterfaceProxyBase
公开。