Browse Source
Merge pull request #11804 from abpframework/liangshiwei/patch-2
Fix module template problem
pull/11808/head
Gizem Mutu Kurt
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
9 additions and
0 deletions
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyCompanyName.MyProjectName.Blazor.Server.Host.csproj
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Blazor.Server.Host/MyProjectNameBlazorHostModule.cs
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyCompanyName.MyProjectName.Web.Host.csproj
-
templates/module/aspnet-core/host/MyCompanyName.MyProjectName.Web.Host/MyProjectNameWebHostModule.cs
|
|
|
@ -44,6 +44,7 @@ |
|
|
|
<ProjectReference Include="..\..\..\..\..\modules\setting-management\src\Volo.Abp.SettingManagement.Application\Volo.Abp.SettingManagement.Application.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\\identity\src\Volo.Abp.PermissionManagement.Domain.Identity\Volo.Abp.PermissionManagement.Domain.Identity.csproj" /> |
|
|
|
<ProjectReference Include="..\..\src\MyCompanyName.MyProjectName.Blazor.Server\MyCompanyName.MyProjectName.Blazor.Server.csproj" /> |
|
|
|
<ProjectReference Include="..\..\src\MyCompanyName.MyProjectName.EntityFrameworkCore\MyCompanyName.MyProjectName.EntityFrameworkCore.csproj" /> |
|
|
|
<ProjectReference Include="..\..\src\MyCompanyName.MyProjectName.HttpApi\MyCompanyName.MyProjectName.HttpApi.csproj" /> |
|
|
|
|
|
|
|
@ -40,6 +40,7 @@ using Volo.Abp.Modularity; |
|
|
|
using Volo.Abp.MultiTenancy; |
|
|
|
using Volo.Abp.PermissionManagement; |
|
|
|
using Volo.Abp.PermissionManagement.EntityFrameworkCore; |
|
|
|
using Volo.Abp.PermissionManagement.Identity; |
|
|
|
using Volo.Abp.SettingManagement; |
|
|
|
using Volo.Abp.SettingManagement.Blazor.Server; |
|
|
|
using Volo.Abp.SettingManagement.EntityFrameworkCore; |
|
|
|
@ -76,6 +77,7 @@ namespace MyCompanyName.MyProjectName.Blazor.Server.Host; |
|
|
|
typeof(AbpTenantManagementApplicationModule), |
|
|
|
typeof(AbpTenantManagementEntityFrameworkCoreModule), |
|
|
|
typeof(AbpPermissionManagementEntityFrameworkCoreModule), |
|
|
|
typeof(AbpPermissionManagementDomainIdentityModule), |
|
|
|
typeof(AbpPermissionManagementApplicationModule), |
|
|
|
typeof(AbpSettingManagementBlazorServerModule), |
|
|
|
typeof(AbpSettingManagementApplicationModule), |
|
|
|
|
|
|
|
@ -30,6 +30,8 @@ |
|
|
|
<ProjectReference Include="..\..\..\..\..\modules\tenant-management\src\Volo.Abp.TenantManagement.Web\Volo.Abp.TenantManagement.Web.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\..\modules\tenant-management\src\Volo.Abp.TenantManagement.HttpApi.Client\Volo.Abp.TenantManagement.HttpApi.Client.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\..\modules\permission-management\src\Volo.Abp.PermissionManagement.HttpApi.Client\Volo.Abp.PermissionManagement.HttpApi.Client.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\..\modules\setting-management\src\Volo.Abp.SettingManagement.Web\Volo.Abp.SettingManagement.Web.csproj" /> |
|
|
|
<ProjectReference Include="..\..\..\..\..\modules\setting-management\src\Volo.Abp.SettingManagement.HttpApi.Client\Volo.Abp.SettingManagement.HttpApi.Client.csproj" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
|
|
|
|
@ -45,6 +45,8 @@ using Volo.Abp.Security.Claims; |
|
|
|
using Volo.Abp.Swashbuckle; |
|
|
|
using Volo.Abp.TenantManagement; |
|
|
|
using Volo.Abp.TenantManagement.Web; |
|
|
|
using Volo.Abp.SettingManagement; |
|
|
|
using Volo.Abp.SettingManagement.Web; |
|
|
|
using Volo.Abp.UI.Navigation.Urls; |
|
|
|
using Volo.Abp.UI; |
|
|
|
using Volo.Abp.UI.Navigation; |
|
|
|
@ -70,6 +72,8 @@ namespace MyCompanyName.MyProjectName; |
|
|
|
typeof(AbpTenantManagementWebModule), |
|
|
|
typeof(AbpTenantManagementHttpApiClientModule), |
|
|
|
typeof(AbpPermissionManagementHttpApiClientModule), |
|
|
|
typeof(AbpSettingManagementHttpApiClientModule), |
|
|
|
typeof(AbpSettingManagementWebModule), |
|
|
|
typeof(AbpAspNetCoreSerilogModule), |
|
|
|
typeof(AbpSwashbuckleModule) |
|
|
|
)] |
|
|
|
|