Asp.net Core 部署到Azure.cn的一个小问题

时间:2021-07-23 21:44:02

前一段尝试在azure.cn上部署Aps.net Core未成功,报503错误!在网上查到是Azure.cn的问题,未能完美支持Asp.net Core!

Asp.net Core发表正式版了,又尝试了一下!部署成功!惊喜啊!

跟着问题又来了,我的项目中使用了Areas,部署完成后,Areas下面的功能均报错,英文的,大意是不能设置环境未Development!

又检查了一遍,不在Areas下的功能可以正常使用,问题出在Areas上!

查了一下文档,发现如下:

Publishing Areas

To publish all views of the areas folder, in the project.json file include an entry in the publishOptions‘s include node like below:

"publishOptions": {
"include": [
"Areas/**/*.cshtml",
....
....
]
Show comments

依样画葫芦,成功了!

记录备查