I have a "Class Library (Package)" which creates a Nuget package with some CSS and JS content. The static files as inside the "content/" folder.
If I reference this Nuget package in a project created using the "ASP.NET 4.6.1 Template", all the files from Nuget "content/" folder are copied in to the empty project root. Which is fine.
If I reference this Nuget in a project created by "ASP.NET 5 Template", no files are copied. Is it some limitation of a new "ASP.NET 5 Templates" ?
I know I can use Bower for static files, but I do not want to end up with two packages, one for client side(Bower, css, js) and one for "Server" side (Nuger, DLL).