4

尝试将ASP.NET Boilerplate项目从升级.NET Core 1.x.NET Core 2.0

解决方案构建成功,但在Startup.ConfigureServices方法中抛出异常

 services.AddAbpIdentity<Tenant, User, Role, SecurityStampValidator>(
     options => {})
   .AddUserManager<UserManager>()
   .AddRoleManager<RoleManager>()
   .AddSignInManager<SignInManager>()
   .AddClaimsPrincipalFactory<UserClaimsPrincipalFactory>()
   .AddDefaultTokenProviders();

异常详情

System.TypeLoadException:'无法从程序集'Microsoft.AspNetCore.Authentication,Version = 2.0.0.0,Culture = Neutral,PublicKeyToken = adb9793829ddae60'加载类型'Microsoft.AspNetCore.Authentication.SharedAuthenticationOptions'。'

4

1 回答 1

7

您应该等待 ABP v3.0。我们发布了 ABP v3.0.0-beta2。如果需要,您可以使用测试版。

您还需要更改解决方案:

幸运的是,我升级了解决方案模板。因此,您可以看到我所做的所有更改:

https://github.com/aspnetboilerplate/module-zero-core-template/pull/106/files

于 2017-08-24T05:41:08.883 回答