对“用途”进行排序ReSharper Clean-up 指令
如何设置 ReSharper 在课堂上调用“Sort usings”?
How to setup ReSharper to call "Sort usings" in class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何设置 ReSharper 在课堂上调用“Sort usings”?
How to setup ReSharper to call "Sort usings" in class?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
我会回答我的问题。
使用 Resharper 的快捷方式并不是最佳解决方案。不错的工具是 CodeMaid 它在保存文件时进行了一些很好的清理,就像没有按下快捷键一样:
此工具是 Resharper 的补充。
I will answer for my question.
Using shortcut from Resharper it's not best solution. Nice tool is CodeMaid it makes few nice cleanup's when saving file like with no shortcut key press:
This tool is complement for Resharper.
如果您通过菜单或键盘快捷键 CTRL+E、CTRL+C< 运行代码清理,Resharper (9) 将对用途进行排序/kbd>
Resharper (9) will sort usings if you run Code Cleanup, via menus or keyboard shortcut CTRL+E, CTRL+C
尝试使用 Stylecop Resharper 插件
Stylecop 规则 SA1210:使用指令必须按命名空间的字母顺序排序< /code> 将允许您通过按 ALT+ENTER 使用快速修复对它们进行排序。
使用 Stylecop 可以很好地帮助您编写干净的代码,但您可能想关闭一些规则。
Try using the Stylecop Resharper Plugin
Stylecop Rule SA1210: Using directives must be sorted alphabetically by the namespaces
will allow you to use a quick fix to sort them by pressing ALT+ENTER.Using Stylecop is good at helping you write clean code, but you may want to turn off some of the rules.
您不需要 ReSharper 来执行此操作。默认情况下,快捷键 CTRL+E、R 将删除(未使用)并对 using 语句进行排序。
如果您只想排序或未在 Visual Studio 实例上设置快捷方式,请转到:
有几个选项可以玩。
You don't need ReSharper to do this. By Default the shortcut CTRL+E, R will remove (unused) and sort the using statements.
If you only want sorting or the shortcut isn't set on your instance of Visual Studio, go to:
There are a few options there to play with.
这个问题已经涵盖了这一点:
删除整个程序集中未使用的使用
This question already covers this:
Remove unused Usings across entire assembly