@ -34,7 +34,6 @@ using Volo.Abp.Caching;
using Volo.Abp.Caching.StackExchangeRedis ;
using Volo.Abp.FeatureManagement ;
using Volo.Abp.Http.Client.IdentityModel.Web ;
using Volo.Abp.Http.Client.Web ;
using Volo.Abp.Identity ;
using Volo.Abp.Identity.Web ;
using Volo.Abp.Modularity ;
@ -55,12 +54,12 @@ namespace MyCompanyName.MyProjectName;
[ DependsOn (
typeof ( MyProjectNameWebModule ) ,
typeof ( MyProjectNameHttpApiClientModule ) ,
typeof ( MyProjectNameHttpApiModule ) ,
typeof ( AbpAspNetCoreAuthenticationOpenIdConnectModule ) ,
typeof ( AbpAspNetCoreMvcClientModule ) ,
typeof ( AbpAspNetCoreMvcUiBasicThemeModule ) ,
typeof ( AbpAutofacModule ) ,
typeof ( AbpCachingStackExchangeRedisModule ) ,
typeof ( AbpHttpClientWebModule ) ,
typeof ( AbpHttpClientIdentityModelWebModule ) ,
typeof ( AbpIdentityWebModule ) ,
typeof ( AbpIdentityHttpApiClientModule ) ,
@ -179,16 +178,16 @@ public class MyProjectNameWebHostModule : AbpModule
{
Configure < AbpVirtualFileSystemOptions > ( options = >
{
//<TEMPLATE-REMOVE>
options . FileSets . ReplaceEmbeddedByPhysical < AbpUiModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}..{0}..{0}..{0}framework{0}src{0}Volo.Abp.UI" , Path . DirectorySeparatorChar ) ) ) ;
//<TEMPLATE-REMOVE>
options . FileSets . ReplaceEmbeddedByPhysical < AbpUiModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}..{0}..{0}..{0}framework{0}src{0}Volo.Abp.UI" , Path . DirectorySeparatorChar ) ) ) ;
options . FileSets . ReplaceEmbeddedByPhysical < AbpAspNetCoreMvcUiModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}..{0}..{0}..{0}framework{0}src{0}Volo.Abp.AspNetCore.Mvc.UI" , Path . DirectorySeparatorChar ) ) ) ;
options . FileSets . ReplaceEmbeddedByPhysical < AbpAspNetCoreMvcUiBootstrapModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}..{0}..{0}..{0}framework{0}src{0}Volo.Abp.AspNetCore.Mvc.UI.Bootstrap" , Path . DirectorySeparatorChar ) ) ) ;
options . FileSets . ReplaceEmbeddedByPhysical < AbpAspNetCoreMvcUiThemeSharedModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}..{0}..{0}..{0}framework{0}src{0}Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared" , Path . DirectorySeparatorChar ) ) ) ;
options . FileSets . ReplaceEmbeddedByPhysical < AbpAspNetCoreMvcUiBasicThemeModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}..{0}..{0}..{0}modules{0}basic-theme{0}src{0}Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic" , Path . DirectorySeparatorChar ) ) ) ;
options . FileSets . ReplaceEmbeddedByPhysical < AbpPermissionManagementWebModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}..{0}..{0}..{0}modules{0}permission-management{0}src{0}Volo.Abp.PermissionManagement.Web" , Path . DirectorySeparatorChar ) ) ) ;
options . FileSets . ReplaceEmbeddedByPhysical < AbpIdentityWebModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}..{0}..{0}..{0}modules{0}identity{0}src{0}Volo.Abp.Identity.Web" , Path . DirectorySeparatorChar ) ) ) ;
//</TEMPLATE-REMOVE>
options . FileSets . ReplaceEmbeddedByPhysical < MyProjectNameDomainSharedModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}src{0}MyCompanyName.MyProjectName.Domain" , Path . DirectorySeparatorChar ) ) ) ;
//</TEMPLATE-REMOVE>
options . FileSets . ReplaceEmbeddedByPhysical < MyProjectNameDomainSharedModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}src{0}MyCompanyName.MyProjectName.Domain" , Path . DirectorySeparatorChar ) ) ) ;
options . FileSets . ReplaceEmbeddedByPhysical < MyProjectNameApplicationContractsModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}src{0}MyCompanyName.MyProjectName.Application.Contracts" , Path . DirectorySeparatorChar ) ) ) ;
options . FileSets . ReplaceEmbeddedByPhysical < MyProjectNameWebModule > ( Path . Combine ( hostingEnvironment . ContentRootPath , string . Format ( "..{0}..{0}src{0}MyCompanyName.MyProjectName.Web" , Path . DirectorySeparatorChar ) ) ) ;
} ) ;