I have a C # webpage (Razor) application and I migrated it to VS 2013 Community Edition Update 4
Previously, when I wanted to see where a variable or function / links were used, I used the Find ALl References tool (Shift + F12) and I would get a list of each case and where it was found (page and line) .;
Now I find that the only time I can find "Find all links for work" is on the cshtml page in the App_Code folder. It does nothing on the pages in the top-level project folder (i.e., on the pages that make up the bulk of my site). I select the variable and press Shift + F12 (or click "Find All Links" in the right-click menu) and nothing happens: there is no clock glass, no flicker, no list of links (even if the page is riddled with links to the selected variable).
Are there any settings or something that can make this useful function work on cshtml pages in the top-level project folder, as it happens on pages in the App_Code folder?
RRRSR source share