您如何告诉Visual Studio 2015使用F5从其他文件夹启动Web应用程序?

时间:2017-03-25 01:29:20

标签: asp.net visual-studio visual-studio-2015

我有一个使用ASP.NET 4.x(非核心)模板的Visual Studio 2015项目。

我的index.html文件所有相关文件(例如样式表)都在一个名为" src"的子目录中。请参见下面的屏幕截图。

我可以使用项目属性Start Action |来使VS 2015启动index.html文件具体页面为" src / index.html"。但它仍然使用根路径作为所有其他文件的基本路径。所以我在styles.css(和其他脚本文件)上得到404错误。

当使用浏览器同步(使用npm start)时,我可以定义一个如下所示的bs-config文件:

{
  "server": {
    "baseDir": "src",
    "routes": {
      "/node_modules": "node_modules"
    }
  }
}

注意" baseDir"标签

使用F5时,IIS Express是否有类似内容?

Current File Structure

根据请求,这是index.html文件

<!DOCTYPE html>
<html>
  <head>
    <title>Angular QuickStart</title>
    <base href="/">
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="styles.css">

    <!-- Polyfill(s) for older browsers -->
    <script src="node_modules/core-js/client/shim.min.js"></script>

    <script src="node_modules/zone.js/dist/zone.js"></script>
    <script src="node_modules/systemjs/dist/system.src.js"></script>

    <script src="systemjs.config.js"></script>
    <script>
      System.import('main.js').catch(function(err){ console.error(err); });
    </script>
  </head>

  <body>
    <my-app>Loading AppComponent content here ...</my-app>
  </body>
</html>

0 个答案:

没有答案