查找解决方案中所有项目的所有参考

发布于 2024-10-08 16:41:36 字数 142 浏览 3 评论 0原文

我的解决方案包含多个项目(例如 P1、P2)。在项目依赖中,我将P2设置为依赖于P1,因此P2使用了P1中的一些类。当我对 P1 的类/方法执行“查找所有引用”时,结果仅显示 P1 中出现的情况;不是 P2 中使用的事件。有没有办法让“查找所有引用”适用于整个解决方案?

My solution contains multiple projects (say P1, P2). In project dependencies, I set P2 to depend on P1, so P2 uses some classes in P1. When I do a Find All References on a class/method of P1, the result shows only the occurences in P1; not the occurences used in P2. Is there a way to have Find All References work on the entire solution?

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

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

发布评论

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

评论(1

江湖彼岸 2024-10-15 16:41:36

项目->项目依赖项仅用于描述附加的非链接相关依赖项。要指定非托管代码的链接依赖项,请使用:

项目 ->属性->通用属性->框架和参考资料 ->参考文献->添加新参考... ->项目

和托管代码使用:

项目 ->添加参考->项目

如果设置正确,Visual Studio 应该能够找到项目间引用。

Project -> Project Dependencies is only for describing additional non-link related dependencies. To specify a link dependency for unmanaged code use:

Project -> Properties -> Common Properties -> Framework and References -> References -> Add New Reference... -> Projects

and for managed code use:

Project -> Add Reference -> Projects

If this is set up correctly Visual Studio should be able to find inter-project references.

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