ASP.NET Core 2.2.0身份支架仍在使用引导3

时间:2019-01-03 10:27:32

标签: asp.net-core asp.net-core-mvc entity-framework-core

我正在运行身份代码生成器

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').

1 个答案:

答案 0 :(得分:5)

您尝试过吗:

services.AddDefaultIdentity<IdentityUser>()
        .AddDefaultUI(UIFramework.Bootstrap4) // specifying the boostrap4 here
        .AddEntityFrameworkStores<ApplicationDbContext>();