browser-link

Browser Link with ASP.NET Core v1.0 in Visual Studio 2015 Update 3

妖精的绣舞 提交于 2019-12-04 18:16:51
问题 I am using Visual Studio 2015 Update 3 and wanting to use the Browser Link feature with my ASP.NET Core v1.0 WebApp project... but I can't get Browser Link to work. Is Browser Link supported for ASP.NET Core v1.0 projects? I can't find much out there with regards to using Browser Link with ASP.NET Core. My project builds OK, but the Browser Link dashboard always shows as "No current connections" when running both with or without debug. In my project.json i'm importing the Browser Link

How to enable browser link for static files in ASP.NET 5

不打扰是莪最后的温柔 提交于 2019-12-04 08:16:38
问题 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

Visual Studio 2013 Browser Link - Enable CTRL to Edit in Browser

笑着哭i 提交于 2019-12-04 08:02:19
How do you enable CTRL key for the Visual Studio Browser Link integration? Scott Hanselman discusses it here around 1:06:00 during the VS 2013 Launch Event . I'm not sure how to activate or enable the realtime HTML Edit feature so I can edit in the browser and have the changes pushed back to Visual Studio. Has anyone tried this out yet or can provide clues? I have VS 2013 RTM - I can't seem to find any update for ASP.NET Web Tools that may have changed this behavior. Is this an IE only behavior or is it browser independent? It sounds like it just injects additional HTML into the page.

Browser Link with ASP.NET Core v1.0 in Visual Studio 2015 Update 3

情到浓时终转凉″ 提交于 2019-12-03 12:15:22
I am using Visual Studio 2015 Update 3 and wanting to use the Browser Link feature with my ASP.NET Core v1.0 WebApp project... but I can't get Browser Link to work. Is Browser Link supported for ASP.NET Core v1.0 projects? I can't find much out there with regards to using Browser Link with ASP.NET Core. My project builds OK, but the Browser Link dashboard always shows as "No current connections" when running both with or without debug. In my project.json i'm importing the Browser Link dependancy; { "dependencies": { "Microsoft.Extensions.Configuration.FileProviderExtensions": "1.0.0-rc1-final"

BrowserLink does not work for ASP.NET Core on Visual Studio 2017 RTM

若如初见. 提交于 2019-12-03 08:29:53
I get the following error in the browser when I enable BrowserLink for my ASP.Net Core 1.1 application and I think because of that the BrowserLink does not work. Browser Link: Exception thrown when trying to invoke Browser Link extension callback "microsoft.visualstudio.web.browserlink.sourcemappingextensionfactory.getCssMappingData": System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.VisualStudio.Web.Extensions.Common.Helpers.VsWebUrlUtil

How to enable browser link for static files in ASP.NET 5

不羁岁月 提交于 2019-12-02 20:57:25
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

Can you turn off Visual Studio 2013 Browser Link on a page by page basis

佐手、 提交于 2019-12-01 18:11:04
I like the inspector feature of Visual Studio 2013 Browser Link. However, I have a small number of pages, mostly custom audio/video Media Players, which cause the browser to make an exorbitant amount of signalr requests per second... in the range of 200 per second. So, I would like to disable the feature on those particular pages. I know it can be disabled accross the entire application or a section of the application by putting the following key in the web.config file. <add key="vs:EnableBrowserLink" value="true" /> Is there a way to disable it on a single page? Put all of your Media Players

Can you turn off Visual Studio 2013 Browser Link on a page by page basis

断了今生、忘了曾经 提交于 2019-12-01 17:21:47
问题 I like the inspector feature of Visual Studio 2013 Browser Link. However, I have a small number of pages, mostly custom audio/video Media Players, which cause the browser to make an exorbitant amount of signalr requests per second... in the range of 200 per second. So, I would like to disable the feature on those particular pages. I know it can be disabled accross the entire application or a section of the application by putting the following key in the web.config file. <add key="vs

Disable Browser Link - which toolbar

百般思念 提交于 2019-11-28 04:26:23
I want to disable visual studios browser link. I found this question: How can I disable __vwd/js/artery in VS.NET 2013? and many other resources saying I should untick "Enable Browser Link" in the toolbar, but that toolbar doesn't show up in my visual studio. I've enabled all the debug toolbars but still no browser link button. ToastyMallows http://blogs.msdn.com/b/webdev/archive/2013/06/28/browser-link-feature-in-visual-studio-preview-2013.aspx This should explain how to turn off browser link. You could do it via web.config: <appSettings> <add key="vs:EnableBrowserLink" value="false"></add> <

Disable Browser Link - which toolbar

岁酱吖の 提交于 2019-11-27 04:15:17
问题 I want to disable visual studios browser link. I found this question: How can I disable __vwd/js/artery in VS.NET 2013? and many other resources saying I should untick "Enable Browser Link" in the toolbar, but that toolbar doesn't show up in my visual studio. I've enabled all the debug toolbars but still no browser link button. 回答1: http://blogs.msdn.com/b/webdev/archive/2013/06/28/browser-link-feature-in-visual-studio-preview-2013.aspx This should explain how to turn off browser link. You