ABPVnext创建项目排坑1

目前最新版的ABPVnext不管是用命令还是从官网下载的项目下载下来的分层项目按照文档都无法正常运行(不分层的可以),这里给出常见问题的解决方案:

1. 问题: 运行Ids4项目出现:

InvalidOperationException: Cannot find compilation library location for package 'System.Security.Cryptography.Pkcs'

ABPVnext创建项目排坑1_第1张图片

解决: 双击Ids4编辑项目文件 在PropertyGroup节点插入

    true

参考链接:

See this StackOverflow Post asp.net - InvalidOperationException: Cannot find compilation library location for package 'System.Security.Cryptography.Pkcs' - Stack Overflow
and this GitHub Issue Upgrading from 5.0 to 6.0 yields InvalidOperationException: Cannot find compilation library location for package 'System.Security.Cryptography.Pkcs · Issue #38892 · dotnet/aspnetcore · GitHub2. 添加上述节点后,仍然报错:

AbpException: Could not find the bundle file '/libs/abp/core/abp.css' for the bundle 'Basic.Global'!

ABPVnext创建项目排坑1_第2张图片

解决方法:在项目目录下运行:

abp install-libs

 参考链接:

https://github.com/abpframework/abp/issues/12190

3.Web项目启动报错,建议先关闭所有项目,全部生成一遍再按照Ids4 httpApi.Host,Web顺序启动

 

你可能感兴趣的:(ASP.NET,.NET5,c#)