Browse Source
Merge pull request #12269 from abpframework/AbpPermissionManagementDomainIdentityServerModule
Add `AbpPermissionManagementDomainIdentityServerModule` .
pull/12270/head
liangshiwei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with
18 additions and
0 deletions
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyCompanyName.MyProjectName.Blazor.Server.Mongo.csproj
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server.Mongo/MyProjectNameModule.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyCompanyName.MyProjectName.Blazor.Server.csproj
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Blazor.Server/MyProjectNameModule.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyCompanyName.MyProjectName.Host.Mongo.csproj
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host.Mongo/MyProjectNameModule.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyCompanyName.MyProjectName.Host.csproj
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Host/MyProjectNameModule.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyCompanyName.MyProjectName.Mvc.Mongo.csproj
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc.Mongo/MyProjectNameModule.cs
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyCompanyName.MyProjectName.Mvc.csproj
-
templates/app-nolayers/aspnet-core/MyCompanyName.MyProjectName.Mvc/MyProjectNameModule.cs
|
|
|
@ -37,6 +37,7 @@ |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\identityserver\src\Volo.Abp.PermissionManagement.Domain.IdentityServer\Volo.Abp.PermissionManagement.Domain.IdentityServer.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.Application\Volo.Abp.PermissionManagement.Application.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.MongoDB\Volo.Abp.PermissionManagement.MongoDB.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.HttpApi\Volo.Abp.PermissionManagement.HttpApi.csproj" /> |
|
|
|
|
|
|
|
@ -35,6 +35,7 @@ using Volo.Abp.PermissionManagement; |
|
|
|
using Volo.Abp.PermissionManagement.MongoDB; |
|
|
|
using Volo.Abp.PermissionManagement.HttpApi; |
|
|
|
using Volo.Abp.PermissionManagement.Identity; |
|
|
|
using Volo.Abp.PermissionManagement.IdentityServer; |
|
|
|
using Volo.Abp.SettingManagement; |
|
|
|
using Volo.Abp.SettingManagement.Blazor.Server; |
|
|
|
using Volo.Abp.SettingManagement.MongoDB; |
|
|
|
@ -68,6 +69,7 @@ namespace MyCompanyName.MyProjectName; |
|
|
|
|
|
|
|
// Identity module packages
|
|
|
|
typeof(AbpPermissionManagementDomainIdentityModule), |
|
|
|
typeof(AbpPermissionManagementDomainIdentityServerModule), |
|
|
|
typeof(AbpIdentityApplicationModule), |
|
|
|
typeof(AbpIdentityHttpApiModule), |
|
|
|
typeof(AbpIdentityMongoDbModule), |
|
|
|
|
|
|
|
@ -38,6 +38,7 @@ |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\identityserver\src\Volo.Abp.PermissionManagement.Domain.IdentityServer\Volo.Abp.PermissionManagement.Domain.IdentityServer.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.Application\Volo.Abp.PermissionManagement.Application.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.EntityFrameworkCore\Volo.Abp.PermissionManagement.EntityFrameworkCore.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.HttpApi\Volo.Abp.PermissionManagement.HttpApi.csproj" /> |
|
|
|
|
|
|
|
@ -36,6 +36,7 @@ using Volo.Abp.PermissionManagement; |
|
|
|
using Volo.Abp.PermissionManagement.EntityFrameworkCore; |
|
|
|
using Volo.Abp.PermissionManagement.HttpApi; |
|
|
|
using Volo.Abp.PermissionManagement.Identity; |
|
|
|
using Volo.Abp.PermissionManagement.IdentityServer; |
|
|
|
using Volo.Abp.SettingManagement; |
|
|
|
using Volo.Abp.SettingManagement.Blazor.Server; |
|
|
|
using Volo.Abp.SettingManagement.EntityFrameworkCore; |
|
|
|
@ -69,6 +70,7 @@ namespace MyCompanyName.MyProjectName; |
|
|
|
|
|
|
|
// Identity module packages
|
|
|
|
typeof(AbpPermissionManagementDomainIdentityModule), |
|
|
|
typeof(AbpPermissionManagementDomainIdentityServerModule), |
|
|
|
typeof(AbpIdentityApplicationModule), |
|
|
|
typeof(AbpIdentityHttpApiModule), |
|
|
|
typeof(AbpIdentityEntityFrameworkCoreModule), |
|
|
|
|
|
|
|
@ -35,6 +35,7 @@ |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\identityserver\src\Volo.Abp.PermissionManagement.Domain.IdentityServer\Volo.Abp.PermissionManagement.Domain.IdentityServer.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.Application\Volo.Abp.PermissionManagement.Application.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.MongoDB\Volo.Abp.PermissionManagement.MongoDB.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.HttpApi\Volo.Abp.PermissionManagement.HttpApi.csproj" /> |
|
|
|
|
|
|
|
@ -33,6 +33,7 @@ using Volo.Abp.PermissionManagement; |
|
|
|
using Volo.Abp.PermissionManagement.MongoDB; |
|
|
|
using Volo.Abp.PermissionManagement.HttpApi; |
|
|
|
using Volo.Abp.PermissionManagement.Identity; |
|
|
|
using Volo.Abp.PermissionManagement.IdentityServer; |
|
|
|
using Volo.Abp.SettingManagement; |
|
|
|
using Volo.Abp.SettingManagement.MongoDB; |
|
|
|
using Volo.Abp.Swashbuckle; |
|
|
|
@ -64,6 +65,7 @@ namespace MyCompanyName.MyProjectName; |
|
|
|
|
|
|
|
// Identity module packages
|
|
|
|
typeof(AbpPermissionManagementDomainIdentityModule), |
|
|
|
typeof(AbpPermissionManagementDomainIdentityServerModule), |
|
|
|
typeof(AbpIdentityApplicationModule), |
|
|
|
typeof(AbpIdentityHttpApiModule), |
|
|
|
typeof(AbpIdentityMongoDbModule), |
|
|
|
|
|
|
|
@ -36,6 +36,7 @@ |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\identityserver\src\Volo.Abp.PermissionManagement.Domain.IdentityServer\Volo.Abp.PermissionManagement.Domain.IdentityServer.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.Application\Volo.Abp.PermissionManagement.Application.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.EntityFrameworkCore\Volo.Abp.PermissionManagement.EntityFrameworkCore.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.HttpApi\Volo.Abp.PermissionManagement.HttpApi.csproj" /> |
|
|
|
|
|
|
|
@ -35,6 +35,7 @@ using Volo.Abp.PermissionManagement; |
|
|
|
using Volo.Abp.PermissionManagement.EntityFrameworkCore; |
|
|
|
using Volo.Abp.PermissionManagement.HttpApi; |
|
|
|
using Volo.Abp.PermissionManagement.Identity; |
|
|
|
using Volo.Abp.PermissionManagement.IdentityServer; |
|
|
|
using Volo.Abp.SettingManagement; |
|
|
|
using Volo.Abp.SettingManagement.EntityFrameworkCore; |
|
|
|
using Volo.Abp.Swashbuckle; |
|
|
|
@ -66,6 +67,7 @@ namespace MyCompanyName.MyProjectName; |
|
|
|
|
|
|
|
// Identity module packages
|
|
|
|
typeof(AbpPermissionManagementDomainIdentityModule), |
|
|
|
typeof(AbpPermissionManagementDomainIdentityServerModule), |
|
|
|
typeof(AbpIdentityApplicationModule), |
|
|
|
typeof(AbpIdentityHttpApiModule), |
|
|
|
typeof(AbpIdentityEntityFrameworkCoreModule), |
|
|
|
|
|
|
|
@ -35,6 +35,7 @@ |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\identityserver\src\Volo.Abp.PermissionManagement.Domain.IdentityServer\Volo.Abp.PermissionManagement.Domain.IdentityServer.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.Application\Volo.Abp.PermissionManagement.Application.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.MongoDB\Volo.Abp.PermissionManagement.MongoDB.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.HttpApi\Volo.Abp.PermissionManagement.HttpApi.csproj" /> |
|
|
|
|
|
|
|
@ -31,6 +31,7 @@ using Volo.Abp.PermissionManagement; |
|
|
|
using Volo.Abp.PermissionManagement.MongoDB; |
|
|
|
using Volo.Abp.PermissionManagement.HttpApi; |
|
|
|
using Volo.Abp.PermissionManagement.Identity; |
|
|
|
using Volo.Abp.PermissionManagement.IdentityServer; |
|
|
|
using Volo.Abp.SettingManagement; |
|
|
|
using Volo.Abp.SettingManagement.MongoDB; |
|
|
|
using Volo.Abp.SettingManagement.Web; |
|
|
|
@ -63,6 +64,7 @@ namespace MyCompanyName.MyProjectName; |
|
|
|
|
|
|
|
// Identity module packages
|
|
|
|
typeof(AbpPermissionManagementDomainIdentityModule), |
|
|
|
typeof(AbpPermissionManagementDomainIdentityServerModule), |
|
|
|
typeof(AbpIdentityApplicationModule), |
|
|
|
typeof(AbpIdentityHttpApiModule), |
|
|
|
typeof(AbpIdentityMongoDbModule), |
|
|
|
|
|
|
|
@ -36,6 +36,7 @@ |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\identityserver\src\Volo.Abp.PermissionManagement.Domain.IdentityServer\Volo.Abp.PermissionManagement.Domain.IdentityServer.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.Application\Volo.Abp.PermissionManagement.Application.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.EntityFrameworkCore\Volo.Abp.PermissionManagement.EntityFrameworkCore.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.HttpApi\Volo.Abp.PermissionManagement.HttpApi.csproj" /> |
|
|
|
|
|
|
|
@ -32,6 +32,7 @@ using Volo.Abp.PermissionManagement; |
|
|
|
using Volo.Abp.PermissionManagement.EntityFrameworkCore; |
|
|
|
using Volo.Abp.PermissionManagement.HttpApi; |
|
|
|
using Volo.Abp.PermissionManagement.Identity; |
|
|
|
using Volo.Abp.PermissionManagement.IdentityServer; |
|
|
|
using Volo.Abp.SettingManagement; |
|
|
|
using Volo.Abp.SettingManagement.EntityFrameworkCore; |
|
|
|
using Volo.Abp.SettingManagement.Web; |
|
|
|
@ -64,6 +65,7 @@ namespace MyCompanyName.MyProjectName; |
|
|
|
|
|
|
|
// Identity module packages
|
|
|
|
typeof(AbpPermissionManagementDomainIdentityModule), |
|
|
|
typeof(AbpPermissionManagementDomainIdentityServerModule), |
|
|
|
typeof(AbpIdentityApplicationModule), |
|
|
|
typeof(AbpIdentityHttpApiModule), |
|
|
|
typeof(AbpIdentityEntityFrameworkCoreModule), |
|
|
|
|