浏览器链接Visual Studio 2013无法正常工作

时间:2015-11-07 05:17:00

标签: c# .net visual-studio-2013 asp.net-mvc-5 browser-link

我是VS 2013的新手,最近又推出了一个名为Browser Link的功能。我认为这是微软提供的一个很棒的功能。

我无法获得连接。 我按照以下步骤进行了

  • 创建了一个新的Empty MVC项目
  • 创建了一个控制器Home和Action Index
  • 创建了一个视图Index.cshtml。
  • 解决方案处于调试模式。
  • 解决方案。

No connections made

以下是项目的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上的过程。

1 个答案:

答案 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"/>