如何使用 ReSharper 清理 .Designer 文件?
代码清理选项在 .Designer 文件中不可用。有没有任何选项可以启用此功能?
Code Cleanup option isn't available in .Designer files. Is there any option to enable this feature?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从ReSharper>中的生成的文件掩码区域中删除*.Designer.cs和/或*Designer.vb选项选项>代码检查>生成的代码。
不过,清理它们时要小心,因为在某些情况下这样做可能会导致代码无法编译。
Remove the *.Designer.cs and/or *Designer.vb option from the Generated file masks area in ReSharper > Options > Code Inspection > Generated Code.
Be careful with cleaning them up, though, as in some cases doing so might render the code uncompilable.
为什么需要这个,您经常使用 .designer 文件检查代码?我认为主要原因是每次更改并保存控件、页面等时都会重新生成这些文件。
Why do you need this, you are often examining code withing .designer files? I believe the main reason is the fact that these file are regenerated every time you make change and save the control, page etc.