diff --git a/src/AbpDesk/AbpDesk.Web.Mvc/AbpDesk.Web.Mvc.csproj b/src/AbpDesk/AbpDesk.Web.Mvc/AbpDesk.Web.Mvc.csproj
index 7e837c3e31..aad5e4b507 100644
--- a/src/AbpDesk/AbpDesk.Web.Mvc/AbpDesk.Web.Mvc.csproj
+++ b/src/AbpDesk/AbpDesk.Web.Mvc/AbpDesk.Web.Mvc.csproj
@@ -21,6 +21,8 @@
+
+
@@ -29,7 +31,6 @@
-
diff --git a/src/AbpDesk/AbpDesk.Web.Mvc/AbpDeskWebMvcModule.cs b/src/AbpDesk/AbpDesk.Web.Mvc/AbpDeskWebMvcModule.cs
index 50c18af252..ce05086fa6 100644
--- a/src/AbpDesk/AbpDesk.Web.Mvc/AbpDeskWebMvcModule.cs
+++ b/src/AbpDesk/AbpDesk.Web.Mvc/AbpDeskWebMvcModule.cs
@@ -15,11 +15,10 @@ using Volo.Abp.AspNetCore.Mvc.Bundling;
using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap;
using Volo.Abp.Autofac;
using Volo.Abp.Identity;
+using Volo.Abp.Identity.EntityFrameworkCore;
using Volo.Abp.Identity.Web;
using Volo.Abp.Modularity;
-using Volo.Abp.Timing;
using Volo.Abp.Ui.Navigation;
-using Volo.Abp.Http.Client;
namespace AbpDesk.Web.Mvc
{
@@ -28,7 +27,8 @@ namespace AbpDesk.Web.Mvc
typeof(AbpAspNetCoreMvcUiBootstrapModule),
typeof(AbpDeskApplicationModule),
typeof(AbpDeskEntityFrameworkCoreModule),
- typeof(AbpIdentityHttpApiClientModule),
+ typeof(AbpIdentityApplicationModule),
+ typeof(AbpIdentityEntityFrameworkCoreModule),
typeof(AbpIdentityWebModule),
typeof(AbpAutofacModule)
)]
@@ -46,8 +46,7 @@ namespace AbpDesk.Web.Mvc
options.MenuContributors.Add(new MainMenuContributor());
});
- //TODO: Remove Http.Client reference later
- services.Configure(configuration);
+ //services.Configure(configuration); //Needed when we use Volo.Abp.Identity.HttpApi.Client
services.AddMvc();