查找解决方案中所有项目的所有参考
我的解决方案包含多个项目(例如 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
项目->项目依赖项仅用于描述附加的非链接相关依赖项。要指定非托管代码的链接依赖项,请使用:
项目 ->属性->通用属性->框架和参考资料 ->参考文献->添加新参考... ->项目
和托管代码使用:
项目 ->添加参考->项目
如果设置正确,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.