我正在运行身份代码生成器
dotnet aspnet-codegenerator identity -dc WebApplication1.Data.ApplicationDbContext --force
但是输出的页面基于引导程序3-我读过的书建议它们应该是引导程序4(例如https://github.com/aspnet/Scaffolding/issues/712#issuecomment-420143440)
要获得基于BS4的身份页面,我还需要做些其他事情吗?
注释:
我确保该工具是最新的:
dotnet tool update --global dotnet-aspnet-codegenerator
Tool 'dotnet-aspnet-codegenerator' was reinstalled with the latest stable version (version '2.2.0').
答案 0 :(得分:5)
您尝试过吗:
services.AddDefaultIdentity<IdentityUser>()
.AddDefaultUI(UIFramework.Bootstrap4) // specifying the boostrap4 here
.AddEntityFrameworkStores<ApplicationDbContext>();