Asp.net核心IIS 8.5:找不到视图“索引”

在IIS 8.5,Asp.net核心上部署应用程序

3个应用程序,前端,API和登录(在同一站点上);

所有3个都在VS2015的IIS Express中完美地工作;

前端(只有html / AngularJS)& API在IIS 8.5上运行良好

但是对于Login(IdentityServer4):

InvalidOperationException: The view 'Index' was not found. The following locations were searched:
 - ~/UI/Home/Views/Index.cshtml
 - ~/UI/SharedViews/Index.cshtml

我明白’〜/’是指批准;

我的VS2015结构:

经测试/检查:

Program.cs中的.UseContentRoot(Directory.GetCurrentDirectory())
>服务器上IIS_IUSRS用户帐户的所有权限
> CustomViewLocationExpander:

public class CustomViewLocationExpander : IViewLocationExpander {

   public IEnumerable<string> ExpandViewLocations(ViewLocationExpanderContext context,IEnumerable<string> viewLocations){
       yield return "~/UI/{1}/Views/{0}.cshtml";
       yield return "~/UI/SharedViews/{0}.cshtml";
   }

   public void PopulateValues(ViewLocationExpanderContext context)
   {
   }
}

我可以在’wwwroot’上免费访问所有内容js / images / css

我对这一点毫无头绪.

解决方法

我发帖前搜索一个多小时.休息一下,发现了这个:

https://github.com/IdentityServer/IdentityServer4.Samples/issues/23

将“UI”添加到project.json中的发布选项

"publishOptions": {
  "include": [
    "wwwroot","UI","YourCertificateName.pfx","web.config"
 ]}

精度:“UI”指包含我的视图的“root”文件夹.您必须将所有(根视图文件夹)包含在要导出的“publishOptions”中.

相关文章

### 创建一个gRPC服务项目(grpc服务端)和一个 webapi项目(...
一、SiganlR 使用的协议类型 1.websocket即时通讯协议 2.Ser...
.Net 6 WebApi 项目 在Linux系统上 打包成Docker镜像,发布为...
一、 PD简介PowerDesigner 是一个集所有现代建模技术于一身的...
一、存储过程 存储过程就像数据库中运行的方法(函数) 优点:...
一、Ueditor的下载 1、百度编辑器下载地址:http://ueditor....