Browse Source

Merge pull request #18 from abpframework/gterdem/profile_update_fix

eShopOnAbp: Profile update error
pull/19/head
Enis Necipoglu 5 years ago
committed by GitHub
parent
commit
b9640cf113
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      apps/auth-server/src/EShopOnAbp.AuthServer/EShopOnAbp.AuthServer.csproj
  2. 2
      apps/auth-server/src/EShopOnAbp.AuthServer/EShopOnAbpAuthServerModule.cs

1
apps/auth-server/src/EShopOnAbp.AuthServer/EShopOnAbp.AuthServer.csproj

@ -19,6 +19,7 @@
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic" Version="5.0.0-beta.1" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic" Version="5.0.0-beta.1" />
<PackageReference Include="Volo.Abp.Account.Web.IdentityServer" Version="5.0.0-beta.1" />
<PackageReference Include="Volo.Abp.Identity.HttpApi" Version="5.0.0-beta.1" />
<PackageReference Include="Volo.Abp.Account.Application" Version="5.0.0-beta.1" />
</ItemGroup>

2
apps/auth-server/src/EShopOnAbp.AuthServer/EShopOnAbpAuthServerModule.cs

@ -23,6 +23,7 @@ using Volo.Abp.Caching;
using Volo.Abp.Caching.StackExchangeRedis;
using Volo.Abp.Emailing;
using Volo.Abp.EventBus.RabbitMq;
using Volo.Abp.Identity;
using Volo.Abp.Modularity;
using Volo.Abp.MultiTenancy;
using Volo.Abp.UI.Navigation.Urls;
@ -37,6 +38,7 @@ namespace EShopOnAbp.AuthServer
typeof(AbpAspNetCoreMvcUiBasicThemeModule),
typeof(AbpAccountWebIdentityServerModule),
typeof(AbpAccountApplicationModule),
typeof(AbpIdentityHttpApiModule),
typeof(EShopOnAbpSharedHostingAspNetCoreModule),
typeof(EShopOnAbpSharedLocalizationModule),
typeof(AdministrationServiceEntityFrameworkCoreModule),

Loading…
Cancel
Save