Does anyone know how to enable browser link for use with visual studio 2019?
Web Essentials doesn't seem to work with my .net mvc project.
I have installed Web Essentials in visual studio 2019 and in chrome but no luck in getting it to work.
It works fine in visual studio 2017 though.

In visual studio 2019 while working with asp.net core 3.1 mvc, Following steps worked for me to configure browser auto load on save.
Step1
Enable run time compilation of your views by adding following NuGet package and then configuring it in Startup.cs file.
NuGet package:
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilationadd following line in
ConfigureServices()method in startup.csStep2:
add following NuGet package
Microsoft.VisualStudio.Web.BrowserLinkand then add
in
Configure()method in Startup.cs file.That's it.