有没有办法使用 ReSharper 查找 .NET 项目中所有未使用的代码?

发布于 2024-08-07 07:13:16 字数 359 浏览 5 评论 0原文

我刚刚对同事的项目进行了一次重大修改,在整个过程中几乎所有内容都被重写了。之前的代码太多了。

现在,我的前景是,在我的项目中,有一些不再需要的旧的预重构方法。

有没有办法一次性在整个项目中搜索此类方法?

我了解删除通过反射使用的代码的潜在风险。

它与这个问题非常相似,除了我想要两个额外的东西:

  • 答案
  • 特定于 ReSharper说明的 如何使用 ReSharper 实现这一点,因为我似乎无法弄清楚

I've just done a major, major overhaul on a colleagues project and throughout the process almost everything got rewritten. There was far too much code beforehand.

Now, I am left with the prospect that in amongst my project somewhere are old pre-refactoring methods that are no longer needed.

Is there a way to search the whole project for such methods in one go?

I understand the risk of potentially removing code used via reflection.

It's very similar to this question, except I would like two extra things:

  • An answer specific to ReSharper
  • Instructions on how to achieve this using ReSharper as I cannot seem to figure it out

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

故人的歌 2024-08-14 07:13:16

使用解决方案范围分析。

如果您更改“未使用的声明”
将“R# 选项/检查严重性/代码冗余/未使用的声明”更改为“显示为错误”,您将能够识别所有未使用的声明。

Use solution-wide analysis.

If you change "Unused declaration" in
"R# Options/Inspection Severity/Code Redundancies/Unused declaration" to "Show as Errors", you'll be able to identify all unused declarations.

瑾兮 2024-08-14 07:13:16

据我所知,对于整个解决方案/项目,没有办法使用 R# 来做到这一点。我知道的唯一方法是手动浏览代码,在每个方法名称上按 Alt+F7。

As far as I know, there is not way to do this with R# for the entire solution/project. The only way I know of is to go through your code manually, pressing Alt+F7 on each method name.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文