如何让反射器在加载时加载不同的框架
当您第一次启动 .NET Reflector 时,它会询问您应该加载哪个框架的基本程序集。我经常从一个框架切换到另一个框架,并想知道如何让它每次都弹出该问题(除了重新安装)。或者我是否必须手动为每个列表创建列表,
我似乎无法在菜单中或选项下的任何位置找到它。
编辑:如果您想知道我的意思或有一段时间没有“第一次使用”,这些是我指的选择,图片 从此处引用(当然,现在包括 .NET Framework 4.0):
http://www.myviewstate.net/blog/image.axd?图片=select_framework_version.png
When you first start .NET Reflector, it'll ask you what framework's base assemblies it should load. I often switch from framework to framework and wondered how I could have it popup that question each time (other than reinstalling). Or do I have to manually create lists for each
I can't seem to find it anywhere in the menu or under options.
EDIT: in case you wonder what I mean or haven't had a "first use" in a while, these are the choices I'm referring to, image referred to from here (nowadays includes .NET Framework 4.0, of course):
http://www.myviewstate.net/blog/image.axd?picture=select_framework_version.png
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Reflector 在启动时未加载任何程序集时显示该列表。
如果您从 Reflector 的主视图中删除所有程序集,然后将其关闭,那么当您下次启动它时,它将再次弹出“启动默认程序集列表”对话框。
Reflector shows that list when it starts with no assemblies already loaded.
If you delete all the assemblies from the main view in Reflector and then close it down, it will pop up with the "Start Default Assembly List" dialog again when you next start it.
您可以使用“文件”菜单中的“打开列表”菜单项来创建列表并在它们之间切换。当您创建新列表并单击选择时,它将显示您首次运行应用程序时显示的列表。
You can use 'Open List' menu item from the File menu to create lists and switch between them. When you create a new list and click select it will display the list which is shown when you first run the application.
我不确定您要什么,但听起来您想要一个菜单选项,允许您更改正在使用的基本框架版本以及树中的现有程序集......是吗?
我可以将其添加到我的 powercommands 插件中,它会执行如下操作:
这就是您正在寻找的功能吗?
I'm not certain what you are asking for, but it sounds like you would like a menu choice that would allow you to change the base framework version being used as well as the existing assemblies in the tree ... is that right?
I could add this to my powercommands addin, it would do something like this:
Is that the sort of functionality you are looking for?