I've just created a new dotnet core project with the following:
dotnet new webapi
The created the following folders and files:
bin
controllers
obj
wwwroot (empty)
dotnet.csproj
Program.cs
Startup.cs
Now i want to get started with bower (bootstrap, jQuery, angular 1.x) and add static files to my project. But this should be added in wwwroot folder with lib, images, js and css, right? How do i add this to my current project?
I've checked the following link to add static files, but gives me an error: https://docs.microsoft.com/en-us/aspnet/core/fundamentals/static-files#serving-default-files
the type or namespace name 'StaticFiles' does not exist in the name space 'Microsoft.AspNetCore'
Thanks in advance!
bower installit. - Jai