In the .NET CORE application, I\'m using static files in wwwroot folder. while running it as dotnet run the index.html file
.NET CORE
wwwroot
dotnet run
index.html
Add the corresponding statement in your project.json:
project.json
"publishOptions": { "include": [ "wwwroot", "appsettings.json", "web.config" ] },