I manage all my plugins in my ASP.NET MVC application with bower.
The problem: Bower works great, but when it installs the plugins, I don't see them in my solution. I'd have to show all files (which is not updated automatically) and then include them, which then causes problems when I update them again...
What I want: ASP.NET Core projects have a special folder for the wwwroot, which automatically makes the file visible in the solution, when it's created e.g. in the File Explorer.
What I tried:
Edit the .csproj
to 'lablabla\bower_components\**
This only included the files at startup and some changes in the project replaced the **
(Source).
wwwroot
folder is just s special folder in the world of .Net Core and no, you can't have this in MVC5. It may be possible with some sort of addon though. – Ethylethylate