I created a Razor View by creating a new folder in my Solution under the Views folder, and then I right clicked that folder and selected "Add View".
Later, I went to my Controller folder and right clicked it, selecting "Add Controller". However, now I want to attach the view I created to my controller and it Visual Studio does not recognize that my view exists when I do:
return View("MyViewName");
How do I make Visual Studio recognize my already existing view? I would rather not resolve the issue by using Resharper to create my Razor view (since I've already created the view).
Thanks in advance!