I just created a brand new Asp.net Core Web Application (MVC) to reproduce a problem I have with another project.
When I try adding a view from the controller's action menu (right click > add a view) it creates a view within the Controller's folder instead of creating a new subfolder in the Views folder, naming it and placing the created view inside it.
My dotnet version is 3.1.401 and I am on Microsoft Visual Studio Community 2019 Version 16.7.2.
See underneath, the "index.cshtml" placed within the Controller folder. I am expecting a "Test" subfolder created in the Views folder and that "index.cshtml" view placed in it.
-- update :
The image underneath is to show where the view created from the controller's action menu (right click > add a view) ends up... Another precision, after I have created the folder manually and placed one view into it, any further views created with (right click > add a view) end up in the right folder automatically.





