我是VS 2013的新手,最近又推出了一个名为Browser Link的功能。我认为这是微软提供的一个很棒的功能。
我无法获得连接。 我按照以下步骤进行了
以下是项目的web.config设置
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=301880
-->
<configuration>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5.1" />
<httpRuntime targetFramework="4.5.1" />
</system.web>
</configuration>
我已经完成了Microsoft解释在其网站http://go.microsoft.com/fwlink/?LinkId=313770上的过程。
答案 0 :(得分:0)
要注册Page Inspector的Runtime,请在web.config中添加以下行。
<system.web>
<compilation debug="true" targetFramework="4.5.1">
<assemblies>
<add assembly="Microsoft.VisualStudio.Web.PageInspector.Loader,Version=1.0.0.0, Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a"/>