2

我想查看给定方法的所有引用。我的意思是 C# 源代码和视图(.aspx、.ascx、.cshtml)中的引用。有没有办法做到这一点?VS2012 设置还是插件?

4

1 回答 1

3

如果您更改了一种方法并在您的视图中使用它并且不知道是哪一种,您可以随时MvcBuildViews更改.csproj.

<MvcBuildViews>true</MvcBuildViews>

Resharper 是一款出色的工具,可让您找到解决方案中的所有用法(包括视图)。

http://www.jetbrains.com/resharper/

resharper 还有一些替代方案:

CodeRush: http: //www.devexpress.com/Home/Try.xml

JustCode:http: //blogs.telerik.com/blogs/posts/09-11-18/code-just-code-justcode.aspx

VisualAssistX: http: //www.wholetomato.com/

唯一免费的是 VSCommands:

http://visualstudiogallery.msdn.microsoft.com/d491911d-97f3-4cf6-87b0-6a2882120acf/,但我不确定它是否具有该功能。

这里还有一个客户反馈:http: //aspnet.uservoice.com/forums/41201-asp-net-mvc/suggestions/3090767-make-find-all-references-search-in-mvc-views,以防万一你想跟踪它的状态。

于 2012-12-06T11:37:59.340 回答