R# 2016.3 MVC Core ViewLocations
I have added feature folders using this article from MSDN (http://bit.ly/2iwXija). I have noticed that R# now doesn't verify my view locations. For example, if my action method returns View("Index") for the HomeController, "Index" is colored red.
In MVC 5 (and earlier), in order to get R# to work with custom view locations, I followed the advice from this article for JetBrains: http://bit.ly/2hgXstQ. Essentially, I would have to set the locations to Master and Partial View Locations as well and R# would resolve my views in custom locations.
The question that I am asking is does R# "play nice" with using the View Location Expanders in ASP.NET Core? In Core, I don't see a way to specify the view locations specifically for Master and PartialViewLocations per the JetBrains blog article.
Thanks!
C
Please sign in to leave a comment.
Hello
ReSharper has not supported custom View location for ASP.NET Core projects yet. Feel free to follow and vote for https://youtrack.jetbrains.com/issue/RSRP-461882 ticket.
Thanks!
Alex
Thank you!
Chuck