Installed Web Essentials in my new computer but I cannot get Browser Link working with ASP.NET 5 / MVC6 web Applications projects. Works Fine with ASP.NET 4.5 however. This is what I have tried so far.
My project.json has following dependencies already when I create the project
"Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0-rc1-final"
My Startup.cs class also already has configured BrowserLink (I am running in DEV env)
if (env.IsDevelopment())
{
app.UseBrowserLink();
app.UseDeveloperExceptionPage();
}
I have enabled Browser Link form toolbar
Non worked.. When I run the app pressing F5, the browser link dashboard doesn't detect any browser. says 0 connections.
I have also tried uninstalling Web Essentials and reinstalling. Also tried using Web Essential Nightly build.
Re-intalling Visual Studio did not helped either.
Anything else that I might be missing? I am using VS2015 community on Windows 10 machine. I have another computer with similar setup works fine in that computer. I tried creating project in My other computer where browser link was working and copied the project to this computer, That did not help either.