Dav*_*idT 5 asp.net view iis-8.5 asp.net-core-mvc
在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
Run Code Online (Sandbox Code Playgroud)
我明白'〜/'是指批准;
我的VS2015结构:

经测试/检查:
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)
{
}
}
Run Code Online (Sandbox Code Playgroud)我可以在'wwwroot'上免费访问所有内容js/images/css
我对这一点毫无头绪.
我发帖前搜索了一个多小时.休息一下,发现了这个:
https://github.com/IdentityServer/IdentityServer4.Samples/issues/23
将"UI"添加到project.json中的发布选项
"publishOptions": {
"include": [
"wwwroot",
"UI",
"YourCertificateName.pfx",
"web.config"
]}
Run Code Online (Sandbox Code Playgroud)
精度:"UI"指包含我的视图的"root"文件夹.您必须将所有(根视图文件夹)包含在要导出的"publishOptions"中.
| 归档时间: |
|
| 查看次数: |
2338 次 |
| 最近记录: |