我已经创建了 Visual Studio 2012 包(使用 VS2012 SDK)。此扩展(如果安装在客户端的 IDE 环境中)应该具有从开发人员正在处理的当前打开的解决方案中收集所有特定类型的功能。ASP.NET MVC 应用程序项目的 Visual Studio 设计器中嵌入了类似的功能,开发人员在其中实现模型/控制器类,构建项目,然后能够在脚手架 UI(设计器的下拉列表)中访问此类型。WPF、WinForms Visual Designers等也提供了相应的功能。
假设我的扩展必须从当前解决方案中收集所有实现ISerializable
接口的类型。步骤如下:开发人员创建特定类,重建包含项目/解决方案,然后执行扩展 UI 提供的一些操作,从而涉及执行ISerializable
类型收集。
我尝试使用反射来实现收集操作:
List<Type> types = AppDomain.CurrentDomain.GetAssemblies().ToList()
.SelectMany(s => s.GetTypes())
.Where(p => typeof(ISerializable).IsAssignableFrom(p) && !p.IsAbstract).ToList();
但是上面的代码会导致System.Reflection.ReflectionTypeLoadException
抛出异常:
System.Reflection.ReflectionTypeLoadException was unhandled by user code
HResult=-2146232830
Message=Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.
Source=mscorlib
StackTrace:
at System.Reflection.RuntimeModule.GetTypes(RuntimeModule module)
at System.Reflection.RuntimeModule.GetTypes()
at System.Reflection.Assembly.GetTypes()
(...)
LoaderException: [System.Exception{System.TypeLoadException}]
{"Could not find Windows Runtime type 'Windows.System.ProcessorArchitecture'.":"Windows.System.ProcessorArchitecture"}
(...)
如何正确实施从当前构建的解决方案中收集特定类型的操作?