Is there a way to get Browser Link working with static files under ASP.NET 5? My Startup.cs currently has the following:
public void Configure(IApplicationBuilder app)
{
app.UseBrowserLink();
app.UseStaticFiles();
app.UseFileServer(new FileServerOptions
{
EnableDefaultFiles = true
});
}
which is apparently not enough to do the trick. I'm running VS 2015 CTP 6.
Previously under System.Web it was possible by setting up a handler for .html files like in this answer, but I'm not sure what the ASP.NET 5 equivalent would be.
Someone has also posted the question at the ASP.NET forums, but it has no answers so far.