在我的VS2015环境中,我有一个像这样的文件夹结构:
--/project
----/wwwroot
-------/js
-------index.html
----web.config
----project.json
...
...
当我将应用程序发布到Azure时,Azure会将所有内容放在site / wwwroot下。在这种情况下,我有两个wwwroot文件夹,一个在另一个下。我不介意,但我的主页无法访问。如果我将虚拟应用程序/目录设置更改为指向Azure中的站点/ wwwroot / wwwroot,我可以看到主页但应用程序不可用(WEB API等)。
关于如何使这项工作的任何想法?
答案 0 :(得分:0)
You seem to have both web.config and Project.json.
So is this ASP.NET core or the legacy ASP.NET application? You will see another wwwroot in case of a ASP.NET core application.
See this article once on how to publish the web app: https://docs.asp.net/en/latest/tutorials/publish-to-azure-webapp-using-vs.html