在wwwroot中复制html文件

时间:2016-11-14 13:05:18

标签: angular asp.net-core angular-cli

我创建了空的asp.net核心应用程序。之后,我使用angular-cli安装angular2应用程序。现在我遇到了一个问题。在启动时,它会在wwwroot文件夹中查找index.html。但我的文件夹结构是:

enter image description here

我该怎么办?

在tsconfig中我改变了"outDir": "../wwwroot/",,但它只添加了js文件

2 个答案:

答案 0 :(得分:0)

他们是angular-cli.json文件,因为你需要更改"outDir":"wwwroot", 运行后可执行此命令ng build -prod

答案 1 :(得分:0)

实际上,如果您正在执行此操作,则不需要使用f5运行角度应用程序。您所需要做的就是:

  1. 右键点击package.json
  2. 点击Task runner explorer
  3. Defaults标签下,右键点击start并运行
  4. 之后,您的应用程序将在localhost:4200

    上运行