I got a html file index.html that i want to link with my asp.net5 project.
I have tried to add the index.html in wwwroot and when I start the debug I go to localhost:port/index.html and it shows me nothing.
Can some one link to a documentation or explain how to do it?
PS: I use visual-studio.
Config code:
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app)
{
app.UseIISPlatformHandler();
app.Run(async (context) =>
{
await context.Response.WriteAsync("test");
});
}