From bbb1e755ae22edb48b5bd0dce4ca4d2c9bceb7fb Mon Sep 17 00:00:00 2001 From: bnymncoskuner Date: Wed, 11 Aug 2021 19:44:41 +0300 Subject: [PATCH 01/10] update lepton-x post --- docs/en/Blog-Posts/2021-07-28-lepton-x-release/POST.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/en/Blog-Posts/2021-07-28-lepton-x-release/POST.md b/docs/en/Blog-Posts/2021-07-28-lepton-x-release/POST.md index 179b3326cd..18c2d4e0cc 100644 --- a/docs/en/Blog-Posts/2021-07-28-lepton-x-release/POST.md +++ b/docs/en/Blog-Posts/2021-07-28-lepton-x-release/POST.md @@ -37,7 +37,7 @@ with "node_modules/bootstrap-icons/font/bootstrap-icons.css", ``` -* Finally, remove `ThemeBasicModule` and import the related modules in `app.module.ts` +* Finally, remove `ThemeBasicModule` from `app.module.ts` and `shared.module.ts`, and import the related modules in `app.module.ts` ```js import { ThemeLeptonXModule } from '@abp/ng.theme.lepton-x'; @@ -46,9 +46,6 @@ import { SideMenuLayoutModule } from '@abp/ng.theme.lepton-x/layouts'; @NgModule({ imports: [ // ... - - // do not forget to remove ThemeBasicModule - // ThemeBasicModule.forRoot(), ThemeLeptonXModule.forRoot(), SideMenuLayoutModule.forRoot(), ], @@ -144,7 +141,7 @@ The fourth one depends on which layout you want to use. For now, there is only ` The last one is `bootstrap-icons` which are being used throughout the components. -* At last, remove `ThemeLeptonModule` and import the following modules in `app.module.ts` +* At last, remove `ThemeLeptonModule` from `app.module.ts` and `shared.module.ts`, and import the following modules in `app.module.ts` ```js import { ThemeLeptonXModule } from '@volosoft/abp.ng.theme.lepton-x'; @@ -154,7 +151,6 @@ import { AbpSideMenuLayoutModule } from '@volosoft/abp.ng.theme.lepton-x/layouts // ... imports: [ // ... - // ThemeLeptonModule.forRoot(), ThemeLeptonXModule.forRoot(), AbpSideMenuLayoutModule.forRoot(), // depends on which layout you choose // ... From a21cf548ef5b93290d6d6a1ce1543241c4e45c4b Mon Sep 17 00:00:00 2001 From: Bunyamin Coskuner Date: Wed, 11 Aug 2021 19:50:46 +0300 Subject: [PATCH 02/10] Fix typo in lepton-x blogpost --- docs/en/Blog-Posts/2021-07-28-lepton-x-release/POST.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/Blog-Posts/2021-07-28-lepton-x-release/POST.md b/docs/en/Blog-Posts/2021-07-28-lepton-x-release/POST.md index 18c2d4e0cc..bc586fdeed 100644 --- a/docs/en/Blog-Posts/2021-07-28-lepton-x-release/POST.md +++ b/docs/en/Blog-Posts/2021-07-28-lepton-x-release/POST.md @@ -211,6 +211,6 @@ When the user selects a theme, the corresponding CSS class is added to the `body ## Conclusion -In this blog post, I've explained how to use the alpha version of the new LeptonX theme for ABP-based solution.s Please, keep in mind that this is an alpha version, and we will continue to work on the LeptonX theme. The APIs are bound to change and breaking changes may be introduced in future versions. +In this blog post, I've explained how to use the alpha version of the new LeptonX theme for ABP-based solutions. Please, keep in mind that this is an alpha version, and we will continue to work on the LeptonX theme. The APIs are bound to change and breaking changes may be introduced in future versions. -We would like you to try it out with the latest version of the ABP Framework and give us feedback at lepton@volosoft.com or open an issue on this repository: https://github.com/volosoft/lepton-theme \ No newline at end of file +We would like you to try it out with the latest version of the ABP Framework and give us feedback at lepton@volosoft.com or open an issue on this repository: https://github.com/volosoft/lepton-theme From 42aa6e0b466ea244b831b2927bf57d9e6fa9feb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enis=20Necipo=C4=9Flu?= Date: Thu, 12 Aug 2021 18:47:05 +0300 Subject: [PATCH 03/10] CmsKit - Add setter to TenantId in MenuItem --- .../src/Volo.CmsKit.Domain/Volo/CmsKit/Menus/MenuItem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cms-kit/src/Volo.CmsKit.Domain/Volo/CmsKit/Menus/MenuItem.cs b/modules/cms-kit/src/Volo.CmsKit.Domain/Volo/CmsKit/Menus/MenuItem.cs index 0ff1ad7bfa..65d6b0e1ca 100644 --- a/modules/cms-kit/src/Volo.CmsKit.Domain/Volo/CmsKit/Menus/MenuItem.cs +++ b/modules/cms-kit/src/Volo.CmsKit.Domain/Volo/CmsKit/Menus/MenuItem.cs @@ -39,7 +39,7 @@ namespace Volo.CmsKit.Menus public Guid? PageId { get; protected set; } - public Guid? TenantId { get; } + public Guid? TenantId { get; protected set; } public MenuItem(Guid id, [NotNull] string displayName, From 9206ff64864f7f620c53c73701cc6d4ad411796c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=98=8E=E4=BA=AE?= <7440415+brighterman@user.noreply.gitee.com> Date: Fri, 13 Aug 2021 17:38:47 +0800 Subject: [PATCH 04/10] update the module file name --- .../{AbpBlazoriseModule.cs => AbpBlazoriseUIModule.cs} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename framework/src/Volo.Abp.BlazoriseUI/{AbpBlazoriseModule.cs => AbpBlazoriseUIModule.cs} (100%) diff --git a/framework/src/Volo.Abp.BlazoriseUI/AbpBlazoriseModule.cs b/framework/src/Volo.Abp.BlazoriseUI/AbpBlazoriseUIModule.cs similarity index 100% rename from framework/src/Volo.Abp.BlazoriseUI/AbpBlazoriseModule.cs rename to framework/src/Volo.Abp.BlazoriseUI/AbpBlazoriseUIModule.cs From 9f387d5ab24781cec0a7d0baef06ee49069b3c95 Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Sun, 15 Aug 2021 10:14:19 +0800 Subject: [PATCH 05/10] Use DisallowConcurrentExecution to keep a Job from firing concurrently --- .../Volo/Abp/BackgroundJobs/Quartz/QuartzJobExecutionAdapter.cs | 1 + .../BackgroundWorkers/Quartz/QuartzBackgroundWorkerAdapter.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo/Abp/BackgroundJobs/Quartz/QuartzJobExecutionAdapter.cs b/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo/Abp/BackgroundJobs/Quartz/QuartzJobExecutionAdapter.cs index 79776d0726..96c787c511 100644 --- a/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo/Abp/BackgroundJobs/Quartz/QuartzJobExecutionAdapter.cs +++ b/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo/Abp/BackgroundJobs/Quartz/QuartzJobExecutionAdapter.cs @@ -9,6 +9,7 @@ using Volo.Abp.Json; namespace Volo.Abp.BackgroundJobs.Quartz { + [DisallowConcurrentExecution] public class QuartzJobExecutionAdapter : IJob { public ILogger> Logger { get; set; } diff --git a/framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo/Abp/BackgroundWorkers/Quartz/QuartzBackgroundWorkerAdapter.cs b/framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo/Abp/BackgroundWorkers/Quartz/QuartzBackgroundWorkerAdapter.cs index a37807e473..aa99434ed5 100644 --- a/framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo/Abp/BackgroundWorkers/Quartz/QuartzBackgroundWorkerAdapter.cs +++ b/framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo/Abp/BackgroundWorkers/Quartz/QuartzBackgroundWorkerAdapter.cs @@ -6,6 +6,7 @@ using Volo.Abp.Threading; namespace Volo.Abp.BackgroundWorkers.Quartz { + [DisallowConcurrentExecution] public class QuartzPeriodicBackgroundWorkerAdapter : QuartzBackgroundWorkerBase, IQuartzBackgroundWorkerAdapter where TWorker : IBackgroundWorker From 5737d1909f108c8efd67a84acd9aa638b4174e66 Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Mon, 16 Aug 2021 11:01:39 +0800 Subject: [PATCH 06/10] Update QuartzJobExecutionAdapter.cs --- .../Volo/Abp/BackgroundJobs/Quartz/QuartzJobExecutionAdapter.cs | 1 - ...WorkerAdapter.cs => QuartzPeriodicBackgroundWorkerAdapter.cs} | 0 2 files changed, 1 deletion(-) rename framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo/Abp/BackgroundWorkers/Quartz/{QuartzBackgroundWorkerAdapter.cs => QuartzPeriodicBackgroundWorkerAdapter.cs} (100%) diff --git a/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo/Abp/BackgroundJobs/Quartz/QuartzJobExecutionAdapter.cs b/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo/Abp/BackgroundJobs/Quartz/QuartzJobExecutionAdapter.cs index 96c787c511..79776d0726 100644 --- a/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo/Abp/BackgroundJobs/Quartz/QuartzJobExecutionAdapter.cs +++ b/framework/src/Volo.Abp.BackgroundJobs.Quartz/Volo/Abp/BackgroundJobs/Quartz/QuartzJobExecutionAdapter.cs @@ -9,7 +9,6 @@ using Volo.Abp.Json; namespace Volo.Abp.BackgroundJobs.Quartz { - [DisallowConcurrentExecution] public class QuartzJobExecutionAdapter : IJob { public ILogger> Logger { get; set; } diff --git a/framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo/Abp/BackgroundWorkers/Quartz/QuartzBackgroundWorkerAdapter.cs b/framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo/Abp/BackgroundWorkers/Quartz/QuartzPeriodicBackgroundWorkerAdapter.cs similarity index 100% rename from framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo/Abp/BackgroundWorkers/Quartz/QuartzBackgroundWorkerAdapter.cs rename to framework/src/Volo.Abp.BackgroundWorkers.Quartz/Volo/Abp/BackgroundWorkers/Quartz/QuartzPeriodicBackgroundWorkerAdapter.cs From 92c26dcf9a53c618aba6feaa22d197fd0ac90d2d Mon Sep 17 00:00:00 2001 From: Alper Ebicoglu Date: Mon, 16 Aug 2021 10:18:50 +0300 Subject: [PATCH 07/10] Add trial license localizations --- .../Commercial/Localization/Resources/en.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/abp_io/AbpIoLocalization/AbpIoLocalization/Commercial/Localization/Resources/en.json b/abp_io/AbpIoLocalization/AbpIoLocalization/Commercial/Localization/Resources/en.json index 04da7d097d..7b72f2decb 100644 --- a/abp_io/AbpIoLocalization/AbpIoLocalization/Commercial/Localization/Resources/en.json +++ b/abp_io/AbpIoLocalization/AbpIoLocalization/Commercial/Localization/Resources/en.json @@ -358,6 +358,19 @@ "WeWillSendYouADownloadLink": "A link to download the e-book has been sent to {0}.
Check your inbox / junk / spam boxes!", "InvalidFormInputs": "Please, type the valid information specified on the form.", "DDDBookEmailBody": "Thank you.
To download your book, click here.", - "FreeDDDEBook": "Free DDD E-Book" + "FreeDDDEBook": "Free DDD E-Book", + "StartFree": "Start free", + "FreeTrial": "Free Trial", + "AcceptsMarketingCommunications": " Yes, I`d like to receive ABP Commercial marketing communications.", + "PurposeOfUsage": "Purpose of usage", + "Industry": "Industry", + "Choose": "- Choose -", + "CompanyOrganizationName": "Company / Organization Name", + "CompanySize": "Company Size", + "Next": "Next", + "StartTrial": "Start My Free Trial", + "ContactUsIssues": "Contact us if you have any issues", + "TrialActivatedWarning": "Dear {0}, a user is entitled to have only 1 free trial period. You already used your trial period.", + "ActivationRequirement": "You are one step away from starting your free trial.
We have sent an email to {0} to activate your account. Check your inbox/junk/spam boxes!" } } From 1d0fc5b26d175c8102f504a62d6897757697cc31 Mon Sep 17 00:00:00 2001 From: maliming Date: Mon, 16 Aug 2021 20:34:02 +0800 Subject: [PATCH 08/10] Rename IgnoreMultiTenancyAttribute .cs to IgnoreMultiTenancyAttribute.cs --- .../{IgnoreMultiTenancy.cs => IgnoreMultiTenancyAttribute.cs} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename framework/src/Volo.Abp.MultiTenancy/Volo/Abp/MultiTenancy/{IgnoreMultiTenancy.cs => IgnoreMultiTenancyAttribute.cs} (100%) diff --git a/framework/src/Volo.Abp.MultiTenancy/Volo/Abp/MultiTenancy/IgnoreMultiTenancy.cs b/framework/src/Volo.Abp.MultiTenancy/Volo/Abp/MultiTenancy/IgnoreMultiTenancyAttribute.cs similarity index 100% rename from framework/src/Volo.Abp.MultiTenancy/Volo/Abp/MultiTenancy/IgnoreMultiTenancy.cs rename to framework/src/Volo.Abp.MultiTenancy/Volo/Abp/MultiTenancy/IgnoreMultiTenancyAttribute.cs From b299c2e43135ecbabf5c8dd5cf23cc7eec6489a1 Mon Sep 17 00:00:00 2001 From: Jadyn Date: Mon, 16 Aug 2021 21:49:00 +0800 Subject: [PATCH 09/10] Fix JsTreeScriptContributor name --- ...{JQueryFormScriptContributor.cs => JsTreeScriptContributor.cs} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename framework/src/Volo.Abp.AspNetCore.Mvc.UI.Packages/Volo/Abp/AspNetCore/Mvc/UI/Packages/JsTree/{JQueryFormScriptContributor.cs => JsTreeScriptContributor.cs} (100%) diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Packages/Volo/Abp/AspNetCore/Mvc/UI/Packages/JsTree/JQueryFormScriptContributor.cs b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Packages/Volo/Abp/AspNetCore/Mvc/UI/Packages/JsTree/JsTreeScriptContributor.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore.Mvc.UI.Packages/Volo/Abp/AspNetCore/Mvc/UI/Packages/JsTree/JQueryFormScriptContributor.cs rename to framework/src/Volo.Abp.AspNetCore.Mvc.UI.Packages/Volo/Abp/AspNetCore/Mvc/UI/Packages/JsTree/JsTreeScriptContributor.cs From fda882774349219579ba056e0073b2d46d74431d Mon Sep 17 00:00:00 2001 From: liangshiwei Date: Tue, 17 Aug 2021 10:42:47 +0800 Subject: [PATCH 10/10] Keep the file name and class name the same --- ...are.cs => ApplicationBuilderAbpJwtTokenMiddlewareExtension.cs} | 0 .../Routing/{AbpBlazorRouterOptions.cs => AbpRouterOptions.cs} | 0 ...dleContributor.cs => ComponentsComponentsBundleContributor.cs} | 0 ...olveContributerBase.cs => HttpTenantResolveContributorBase.cs} | 0 ...cyOptionsExtensions.cs => AbpMultiTenancyOptionsExtensions.cs} | 0 .../{ObjectExtensionConfigurationDto.cs => ModuleExtensionDto.cs} | 0 .../Styles/{CssRelativePathAdjuster.cs => CssRelativePath.cs} | 0 .../{DropDownDemoModel.cs => DropDownDemoDemoModel.cs} | 0 ...dencyRegistrar.cs => AbpAspNetCoreMvcConventionalRegistrar.cs} | 0 ...s.cs => ObjectExtensionPropertyInfoAspNetCoreMvcExtensions.cs} | 0 ...etCoreUnitOfWorkOptions.cs => AbpAspNetCoreAuditingOptions.cs} | 0 ...kgroundWorkerContext.cs => PeriodicBackgroundWorkerContext.cs} | 0 .../Cli/Commands/{LoginInfoCommand..cs => LoginInfoCommand.cs} | 0 ...ryExtensions.cs => AbpCoreStringLocalizerFactoryExtensions.cs} | 0 .../{IServiceExposingArgs.cs => IOnServiceExposingContext.cs} | 0 .../{OnServiceExposingArgs.cs => OnServiceExposingContext.cs} | 0 ...ecycleContributerBase.cs => ModuleLifecycleContributorBase.cs} | 0 ...esolverExtensions.cs => ConnectionStringResolverExtensions.cs} | 0 ...tHandlerWithDisposeAction.cs => EventHandlerDisposeWrapper.cs} | 0 ...ettingValueProvider.cs => DefaultValueFeatureValueProvider.cs} | 0 ...{StringLocalizerHelper.cs => AbpInternalLocalizationHelper.cs} | 0 ...tyExtensions.cs => AbpMultiTenancyClaimsIdentityExtensions.cs} | 0 .../{IDynamicFileManager.cs => IDynamicFileProvider.cs} | 0 ...BlobStoringTestBase.cs => AbpBlobStoringFileSystemTestBase.cs} | 0 ...e.cs => AbpAspNetCoreComponentsWebAssemblyBasicThemeModule.cs} | 0 ...barToolsViewComponent.cs => MainNavbarToolbarViewComponent.cs} | 0 .../Pages/{PublicPageModel.cs => CmsKitPublicPageModelBase.cs} | 0 ...DocsHttpApiClientModule.cs => DocsAdminHttpApiClientModule.cs} | 0 .../MongoDB/{BloggingMongoDbModule.cs => DocsMongoDbModule.cs} | 0 .../{DocumentParseParamaters.cs => DocumentRenderParameters.cs} | 0 .../{IdentityUserLinkManager.cs => IdentityLinkUserManager.cs} | 0 ...pService.cs => HttpClientExternalUserLookupServiceProvider.cs} | 0 .../{IdentityUserExtensions.cs => IdentityUserDtoExtensions.cs} | 0 .../ApiScopes/{ApiResourceConsts.cs => ApiScopeConsts.cs} | 0 .../{PersistedGrantRepository.cs => PersistentGrantRepository.cs} | 0 ...sistedGrantRepository.cs => MongoPersistentGrantRepository.cs} | 0 ...dentityApplicationTestBase.cs => AbpIdentityServerTestBase.cs} | 0 ...licationModule.cs => AbpSettingManagementApplicationModule.cs} | 0 ...omainTestModule.cs => AbpSettingManagementDomainTestModule.cs} | 0 ...erMenuContributor.cs => VirtualFileExplorerMenuContributor.cs} | 0 40 files changed, 0 insertions(+), 0 deletions(-) rename framework/src/Volo.Abp.AspNetCore.Authentication.JwtBearer/Microsoft/AspNetCore/Builder/{JwtTokenMiddleware.cs => ApplicationBuilderAbpJwtTokenMiddlewareExtension.cs} (100%) rename framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Routing/{AbpBlazorRouterOptions.cs => AbpRouterOptions.cs} (100%) rename framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/{ComponentsWebAssemblyBundleContributor.cs => ComponentsComponentsBundleContributor.cs} (100%) rename framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/{HttpTenantResolveContributerBase.cs => HttpTenantResolveContributorBase.cs} (100%) rename framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/MultiTenancy/{MultiTenancyOptionsExtensions.cs => AbpMultiTenancyOptionsExtensions.cs} (100%) rename framework/src/Volo.Abp.AspNetCore.Mvc.Contracts/Volo/Abp/AspNetCore/Mvc/ApplicationConfigurations/ObjectExtending/{ObjectExtensionConfigurationDto.cs => ModuleExtensionDto.cs} (100%) rename framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/Styles/{CssRelativePathAdjuster.cs => CssRelativePath.cs} (100%) rename framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/Demos/DropdownsDemo/{DropDownDemoModel.cs => DropDownDemoDemoModel.cs} (100%) rename framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/DependencyInjection/{AbpAspNetCoreMvcConventionalDependencyRegistrar.cs => AbpAspNetCoreMvcConventionalRegistrar.cs} (100%) rename framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/ObjectExtending/{ObjectExtendingPropertyInfoExtensions.cs => ObjectExtensionPropertyInfoAspNetCoreMvcExtensions.cs} (100%) rename framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/Auditing/{AbpAspNetCoreUnitOfWorkOptions.cs => AbpAspNetCoreAuditingOptions.cs} (100%) rename framework/src/Volo.Abp.BackgroundWorkers/Volo/Abp/BackgroundWorkers/{BackgroundWorkerContext.cs => PeriodicBackgroundWorkerContext.cs} (100%) rename framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/{LoginInfoCommand..cs => LoginInfoCommand.cs} (100%) rename framework/src/Volo.Abp.Core/Microsoft/Extensions/Localization/{AbpStringLocalizerFactoryExtensions.cs => AbpCoreStringLocalizerFactoryExtensions.cs} (100%) rename framework/src/Volo.Abp.Core/Volo/Abp/DependencyInjection/{IServiceExposingArgs.cs => IOnServiceExposingContext.cs} (100%) rename framework/src/Volo.Abp.Core/Volo/Abp/DependencyInjection/{OnServiceExposingArgs.cs => OnServiceExposingContext.cs} (100%) rename framework/src/Volo.Abp.Core/Volo/Abp/Modularity/{ModuleLifecycleContributerBase.cs => ModuleLifecycleContributorBase.cs} (100%) rename framework/src/Volo.Abp.Data/Volo/Abp/Data/{IConnectionStringResolverExtensions.cs => ConnectionStringResolverExtensions.cs} (100%) rename framework/src/Volo.Abp.EventBus/Volo/Abp/EventBus/{EventHandlerWithDisposeAction.cs => EventHandlerDisposeWrapper.cs} (100%) rename framework/src/Volo.Abp.Features/Volo/Abp/Features/{DefaultValueSettingValueProvider.cs => DefaultValueFeatureValueProvider.cs} (100%) rename framework/src/Volo.Abp.Localization/Volo/Abp/Localization/{StringLocalizerHelper.cs => AbpInternalLocalizationHelper.cs} (100%) rename framework/src/Volo.Abp.MultiTenancy/System/Security/Principal/{AbpClaimsIdentityExtensions.cs => AbpMultiTenancyClaimsIdentityExtensions.cs} (100%) rename framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/{IDynamicFileManager.cs => IDynamicFileProvider.cs} (100%) rename framework/test/Volo.Abp.BlobStoring.FileSystem.Tests/Volo/Abp/BlobStoring/FileSystem/{AbpBlobStoringTestBase.cs => AbpBlobStoringFileSystemTestBase.cs} (100%) rename modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/{AbpAspNetCoreComponentsWebAssemblyBasicTheme.cs => AbpAspNetCoreComponentsWebAssemblyBasicThemeModule.cs} (100%) rename modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Components/Toolbar/{MainNavbarToolsViewComponent.cs => MainNavbarToolbarViewComponent.cs} (100%) rename modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/{PublicPageModel.cs => CmsKitPublicPageModelBase.cs} (100%) rename modules/docs/src/Volo.Docs.Admin.HttpApi.Client/Volo/Docs/Admin/{DocsHttpApiClientModule.cs => DocsAdminHttpApiClientModule.cs} (100%) rename modules/docs/src/Volo.Docs.MongoDB/Volo/Docs/MongoDB/{BloggingMongoDbModule.cs => DocsMongoDbModule.cs} (100%) rename modules/docs/src/Volo.Docs.Web/HtmlConverting/{DocumentParseParamaters.cs => DocumentRenderParameters.cs} (100%) rename modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/{IdentityUserLinkManager.cs => IdentityLinkUserManager.cs} (100%) rename modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/{HttpClientIdentityUserLookupService.cs => HttpClientExternalUserLookupServiceProvider.cs} (100%) rename modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/{IdentityUserExtensions.cs => IdentityUserDtoExtensions.cs} (100%) rename modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo/Abp/IdentityServer/ApiScopes/{ApiResourceConsts.cs => ApiScopeConsts.cs} (100%) rename modules/identityserver/src/Volo.Abp.IdentityServer.EntityFrameworkCore/Volo/Abp/IdentityServer/Grants/{PersistedGrantRepository.cs => PersistentGrantRepository.cs} (100%) rename modules/identityserver/src/Volo.Abp.IdentityServer.MongoDB/Volo/Abp/IdentityServer/MongoDB/{MongoPersistedGrantRepository.cs => MongoPersistentGrantRepository.cs} (100%) rename modules/identityserver/test/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests/Volo/Abp/IdentityServer/{AbpIdentityApplicationTestBase.cs => AbpIdentityServerTestBase.cs} (100%) rename modules/setting-management/src/Volo.Abp.SettingManagement.Application/Volo/Abp/SettingManagement/{SettingManagementApplicationModule.cs => AbpSettingManagementApplicationModule.cs} (100%) rename modules/tenant-management/test/Volo.Abp.TenantManagement.Domain.Tests/Volo/Abp/TenantManagement/{AbpTenantManagementDomainTestModule.cs => AbpSettingManagementDomainTestModule.cs} (100%) rename modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Web/Navigation/{AbpVirtualFileExplorerMenuContributor.cs => VirtualFileExplorerMenuContributor.cs} (100%) diff --git a/framework/src/Volo.Abp.AspNetCore.Authentication.JwtBearer/Microsoft/AspNetCore/Builder/JwtTokenMiddleware.cs b/framework/src/Volo.Abp.AspNetCore.Authentication.JwtBearer/Microsoft/AspNetCore/Builder/ApplicationBuilderAbpJwtTokenMiddlewareExtension.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore.Authentication.JwtBearer/Microsoft/AspNetCore/Builder/JwtTokenMiddleware.cs rename to framework/src/Volo.Abp.AspNetCore.Authentication.JwtBearer/Microsoft/AspNetCore/Builder/ApplicationBuilderAbpJwtTokenMiddlewareExtension.cs diff --git a/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Routing/AbpBlazorRouterOptions.cs b/framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Routing/AbpRouterOptions.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Routing/AbpBlazorRouterOptions.cs rename to framework/src/Volo.Abp.AspNetCore.Components.Web.Theming/Routing/AbpRouterOptions.cs diff --git a/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/ComponentsWebAssemblyBundleContributor.cs b/framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/ComponentsComponentsBundleContributor.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/ComponentsWebAssemblyBundleContributor.cs rename to framework/src/Volo.Abp.AspNetCore.Components.WebAssembly.Theming/ComponentsComponentsBundleContributor.cs diff --git a/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/HttpTenantResolveContributerBase.cs b/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/HttpTenantResolveContributorBase.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/HttpTenantResolveContributerBase.cs rename to framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/AspNetCore/MultiTenancy/HttpTenantResolveContributorBase.cs diff --git a/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/MultiTenancy/MultiTenancyOptionsExtensions.cs b/framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/MultiTenancy/AbpMultiTenancyOptionsExtensions.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/MultiTenancy/MultiTenancyOptionsExtensions.cs rename to framework/src/Volo.Abp.AspNetCore.MultiTenancy/Volo/Abp/MultiTenancy/AbpMultiTenancyOptionsExtensions.cs diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.Contracts/Volo/Abp/AspNetCore/Mvc/ApplicationConfigurations/ObjectExtending/ObjectExtensionConfigurationDto.cs b/framework/src/Volo.Abp.AspNetCore.Mvc.Contracts/Volo/Abp/AspNetCore/Mvc/ApplicationConfigurations/ObjectExtending/ModuleExtensionDto.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore.Mvc.Contracts/Volo/Abp/AspNetCore/Mvc/ApplicationConfigurations/ObjectExtending/ObjectExtensionConfigurationDto.cs rename to framework/src/Volo.Abp.AspNetCore.Mvc.Contracts/Volo/Abp/AspNetCore/Mvc/ApplicationConfigurations/ObjectExtending/ModuleExtensionDto.cs diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/Styles/CssRelativePathAdjuster.cs b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/Styles/CssRelativePath.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/Styles/CssRelativePathAdjuster.cs rename to framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bundling/Volo/Abp/AspNetCore/Mvc/UI/Bundling/Styles/CssRelativePath.cs diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/Demos/DropdownsDemo/DropDownDemoModel.cs b/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/Demos/DropdownsDemo/DropDownDemoDemoModel.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/Demos/DropdownsDemo/DropDownDemoModel.cs rename to framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared.Demo/Views/Components/Themes/Shared/Demos/DropdownsDemo/DropDownDemoDemoModel.cs diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/DependencyInjection/AbpAspNetCoreMvcConventionalDependencyRegistrar.cs b/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/DependencyInjection/AbpAspNetCoreMvcConventionalRegistrar.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/DependencyInjection/AbpAspNetCoreMvcConventionalDependencyRegistrar.cs rename to framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/DependencyInjection/AbpAspNetCoreMvcConventionalRegistrar.cs diff --git a/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/ObjectExtending/ObjectExtendingPropertyInfoExtensions.cs b/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/ObjectExtending/ObjectExtensionPropertyInfoAspNetCoreMvcExtensions.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/ObjectExtending/ObjectExtendingPropertyInfoExtensions.cs rename to framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/ObjectExtending/ObjectExtensionPropertyInfoAspNetCoreMvcExtensions.cs diff --git a/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/Auditing/AbpAspNetCoreUnitOfWorkOptions.cs b/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/Auditing/AbpAspNetCoreAuditingOptions.cs similarity index 100% rename from framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/Auditing/AbpAspNetCoreUnitOfWorkOptions.cs rename to framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/Auditing/AbpAspNetCoreAuditingOptions.cs diff --git a/framework/src/Volo.Abp.BackgroundWorkers/Volo/Abp/BackgroundWorkers/BackgroundWorkerContext.cs b/framework/src/Volo.Abp.BackgroundWorkers/Volo/Abp/BackgroundWorkers/PeriodicBackgroundWorkerContext.cs similarity index 100% rename from framework/src/Volo.Abp.BackgroundWorkers/Volo/Abp/BackgroundWorkers/BackgroundWorkerContext.cs rename to framework/src/Volo.Abp.BackgroundWorkers/Volo/Abp/BackgroundWorkers/PeriodicBackgroundWorkerContext.cs diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/LoginInfoCommand..cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/LoginInfoCommand.cs similarity index 100% rename from framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/LoginInfoCommand..cs rename to framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/LoginInfoCommand.cs diff --git a/framework/src/Volo.Abp.Core/Microsoft/Extensions/Localization/AbpStringLocalizerFactoryExtensions.cs b/framework/src/Volo.Abp.Core/Microsoft/Extensions/Localization/AbpCoreStringLocalizerFactoryExtensions.cs similarity index 100% rename from framework/src/Volo.Abp.Core/Microsoft/Extensions/Localization/AbpStringLocalizerFactoryExtensions.cs rename to framework/src/Volo.Abp.Core/Microsoft/Extensions/Localization/AbpCoreStringLocalizerFactoryExtensions.cs diff --git a/framework/src/Volo.Abp.Core/Volo/Abp/DependencyInjection/IServiceExposingArgs.cs b/framework/src/Volo.Abp.Core/Volo/Abp/DependencyInjection/IOnServiceExposingContext.cs similarity index 100% rename from framework/src/Volo.Abp.Core/Volo/Abp/DependencyInjection/IServiceExposingArgs.cs rename to framework/src/Volo.Abp.Core/Volo/Abp/DependencyInjection/IOnServiceExposingContext.cs diff --git a/framework/src/Volo.Abp.Core/Volo/Abp/DependencyInjection/OnServiceExposingArgs.cs b/framework/src/Volo.Abp.Core/Volo/Abp/DependencyInjection/OnServiceExposingContext.cs similarity index 100% rename from framework/src/Volo.Abp.Core/Volo/Abp/DependencyInjection/OnServiceExposingArgs.cs rename to framework/src/Volo.Abp.Core/Volo/Abp/DependencyInjection/OnServiceExposingContext.cs diff --git a/framework/src/Volo.Abp.Core/Volo/Abp/Modularity/ModuleLifecycleContributerBase.cs b/framework/src/Volo.Abp.Core/Volo/Abp/Modularity/ModuleLifecycleContributorBase.cs similarity index 100% rename from framework/src/Volo.Abp.Core/Volo/Abp/Modularity/ModuleLifecycleContributerBase.cs rename to framework/src/Volo.Abp.Core/Volo/Abp/Modularity/ModuleLifecycleContributorBase.cs diff --git a/framework/src/Volo.Abp.Data/Volo/Abp/Data/IConnectionStringResolverExtensions.cs b/framework/src/Volo.Abp.Data/Volo/Abp/Data/ConnectionStringResolverExtensions.cs similarity index 100% rename from framework/src/Volo.Abp.Data/Volo/Abp/Data/IConnectionStringResolverExtensions.cs rename to framework/src/Volo.Abp.Data/Volo/Abp/Data/ConnectionStringResolverExtensions.cs diff --git a/framework/src/Volo.Abp.EventBus/Volo/Abp/EventBus/EventHandlerWithDisposeAction.cs b/framework/src/Volo.Abp.EventBus/Volo/Abp/EventBus/EventHandlerDisposeWrapper.cs similarity index 100% rename from framework/src/Volo.Abp.EventBus/Volo/Abp/EventBus/EventHandlerWithDisposeAction.cs rename to framework/src/Volo.Abp.EventBus/Volo/Abp/EventBus/EventHandlerDisposeWrapper.cs diff --git a/framework/src/Volo.Abp.Features/Volo/Abp/Features/DefaultValueSettingValueProvider.cs b/framework/src/Volo.Abp.Features/Volo/Abp/Features/DefaultValueFeatureValueProvider.cs similarity index 100% rename from framework/src/Volo.Abp.Features/Volo/Abp/Features/DefaultValueSettingValueProvider.cs rename to framework/src/Volo.Abp.Features/Volo/Abp/Features/DefaultValueFeatureValueProvider.cs diff --git a/framework/src/Volo.Abp.Localization/Volo/Abp/Localization/StringLocalizerHelper.cs b/framework/src/Volo.Abp.Localization/Volo/Abp/Localization/AbpInternalLocalizationHelper.cs similarity index 100% rename from framework/src/Volo.Abp.Localization/Volo/Abp/Localization/StringLocalizerHelper.cs rename to framework/src/Volo.Abp.Localization/Volo/Abp/Localization/AbpInternalLocalizationHelper.cs diff --git a/framework/src/Volo.Abp.MultiTenancy/System/Security/Principal/AbpClaimsIdentityExtensions.cs b/framework/src/Volo.Abp.MultiTenancy/System/Security/Principal/AbpMultiTenancyClaimsIdentityExtensions.cs similarity index 100% rename from framework/src/Volo.Abp.MultiTenancy/System/Security/Principal/AbpClaimsIdentityExtensions.cs rename to framework/src/Volo.Abp.MultiTenancy/System/Security/Principal/AbpMultiTenancyClaimsIdentityExtensions.cs diff --git a/framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/IDynamicFileManager.cs b/framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/IDynamicFileProvider.cs similarity index 100% rename from framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/IDynamicFileManager.cs rename to framework/src/Volo.Abp.VirtualFileSystem/Volo/Abp/VirtualFileSystem/IDynamicFileProvider.cs diff --git a/framework/test/Volo.Abp.BlobStoring.FileSystem.Tests/Volo/Abp/BlobStoring/FileSystem/AbpBlobStoringTestBase.cs b/framework/test/Volo.Abp.BlobStoring.FileSystem.Tests/Volo/Abp/BlobStoring/FileSystem/AbpBlobStoringFileSystemTestBase.cs similarity index 100% rename from framework/test/Volo.Abp.BlobStoring.FileSystem.Tests/Volo/Abp/BlobStoring/FileSystem/AbpBlobStoringTestBase.cs rename to framework/test/Volo.Abp.BlobStoring.FileSystem.Tests/Volo/Abp/BlobStoring/FileSystem/AbpBlobStoringFileSystemTestBase.cs diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/AbpAspNetCoreComponentsWebAssemblyBasicTheme.cs b/modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/AbpAspNetCoreComponentsWebAssemblyBasicThemeModule.cs similarity index 100% rename from modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/AbpAspNetCoreComponentsWebAssemblyBasicTheme.cs rename to modules/basic-theme/src/Volo.Abp.AspNetCore.Components.WebAssembly.BasicTheme/AbpAspNetCoreComponentsWebAssemblyBasicThemeModule.cs diff --git a/modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Components/Toolbar/MainNavbarToolsViewComponent.cs b/modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Components/Toolbar/MainNavbarToolbarViewComponent.cs similarity index 100% rename from modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Components/Toolbar/MainNavbarToolsViewComponent.cs rename to modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/Themes/Basic/Components/Toolbar/MainNavbarToolbarViewComponent.cs diff --git a/modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/PublicPageModel.cs b/modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKitPublicPageModelBase.cs similarity index 100% rename from modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/PublicPageModel.cs rename to modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/CmsKitPublicPageModelBase.cs diff --git a/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/Volo/Docs/Admin/DocsHttpApiClientModule.cs b/modules/docs/src/Volo.Docs.Admin.HttpApi.Client/Volo/Docs/Admin/DocsAdminHttpApiClientModule.cs similarity index 100% rename from modules/docs/src/Volo.Docs.Admin.HttpApi.Client/Volo/Docs/Admin/DocsHttpApiClientModule.cs rename to modules/docs/src/Volo.Docs.Admin.HttpApi.Client/Volo/Docs/Admin/DocsAdminHttpApiClientModule.cs diff --git a/modules/docs/src/Volo.Docs.MongoDB/Volo/Docs/MongoDB/BloggingMongoDbModule.cs b/modules/docs/src/Volo.Docs.MongoDB/Volo/Docs/MongoDB/DocsMongoDbModule.cs similarity index 100% rename from modules/docs/src/Volo.Docs.MongoDB/Volo/Docs/MongoDB/BloggingMongoDbModule.cs rename to modules/docs/src/Volo.Docs.MongoDB/Volo/Docs/MongoDB/DocsMongoDbModule.cs diff --git a/modules/docs/src/Volo.Docs.Web/HtmlConverting/DocumentParseParamaters.cs b/modules/docs/src/Volo.Docs.Web/HtmlConverting/DocumentRenderParameters.cs similarity index 100% rename from modules/docs/src/Volo.Docs.Web/HtmlConverting/DocumentParseParamaters.cs rename to modules/docs/src/Volo.Docs.Web/HtmlConverting/DocumentRenderParameters.cs diff --git a/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityUserLinkManager.cs b/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityLinkUserManager.cs similarity index 100% rename from modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityUserLinkManager.cs rename to modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityLinkUserManager.cs diff --git a/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/HttpClientIdentityUserLookupService.cs b/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/HttpClientExternalUserLookupServiceProvider.cs similarity index 100% rename from modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/HttpClientIdentityUserLookupService.cs rename to modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/HttpClientExternalUserLookupServiceProvider.cs diff --git a/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/IdentityUserExtensions.cs b/modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/IdentityUserDtoExtensions.cs similarity index 100% rename from modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/IdentityUserExtensions.cs rename to modules/identity/src/Volo.Abp.Identity.HttpApi.Client/Volo/Abp/Identity/IdentityUserDtoExtensions.cs diff --git a/modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo/Abp/IdentityServer/ApiScopes/ApiResourceConsts.cs b/modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo/Abp/IdentityServer/ApiScopes/ApiScopeConsts.cs similarity index 100% rename from modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo/Abp/IdentityServer/ApiScopes/ApiResourceConsts.cs rename to modules/identityserver/src/Volo.Abp.IdentityServer.Domain.Shared/Volo/Abp/IdentityServer/ApiScopes/ApiScopeConsts.cs diff --git a/modules/identityserver/src/Volo.Abp.IdentityServer.EntityFrameworkCore/Volo/Abp/IdentityServer/Grants/PersistedGrantRepository.cs b/modules/identityserver/src/Volo.Abp.IdentityServer.EntityFrameworkCore/Volo/Abp/IdentityServer/Grants/PersistentGrantRepository.cs similarity index 100% rename from modules/identityserver/src/Volo.Abp.IdentityServer.EntityFrameworkCore/Volo/Abp/IdentityServer/Grants/PersistedGrantRepository.cs rename to modules/identityserver/src/Volo.Abp.IdentityServer.EntityFrameworkCore/Volo/Abp/IdentityServer/Grants/PersistentGrantRepository.cs diff --git a/modules/identityserver/src/Volo.Abp.IdentityServer.MongoDB/Volo/Abp/IdentityServer/MongoDB/MongoPersistedGrantRepository.cs b/modules/identityserver/src/Volo.Abp.IdentityServer.MongoDB/Volo/Abp/IdentityServer/MongoDB/MongoPersistentGrantRepository.cs similarity index 100% rename from modules/identityserver/src/Volo.Abp.IdentityServer.MongoDB/Volo/Abp/IdentityServer/MongoDB/MongoPersistedGrantRepository.cs rename to modules/identityserver/src/Volo.Abp.IdentityServer.MongoDB/Volo/Abp/IdentityServer/MongoDB/MongoPersistentGrantRepository.cs diff --git a/modules/identityserver/test/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests/Volo/Abp/IdentityServer/AbpIdentityApplicationTestBase.cs b/modules/identityserver/test/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests/Volo/Abp/IdentityServer/AbpIdentityServerTestBase.cs similarity index 100% rename from modules/identityserver/test/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests/Volo/Abp/IdentityServer/AbpIdentityApplicationTestBase.cs rename to modules/identityserver/test/Volo.Abp.IdentityServer.EntityFrameworkCore.Tests/Volo/Abp/IdentityServer/AbpIdentityServerTestBase.cs diff --git a/modules/setting-management/src/Volo.Abp.SettingManagement.Application/Volo/Abp/SettingManagement/SettingManagementApplicationModule.cs b/modules/setting-management/src/Volo.Abp.SettingManagement.Application/Volo/Abp/SettingManagement/AbpSettingManagementApplicationModule.cs similarity index 100% rename from modules/setting-management/src/Volo.Abp.SettingManagement.Application/Volo/Abp/SettingManagement/SettingManagementApplicationModule.cs rename to modules/setting-management/src/Volo.Abp.SettingManagement.Application/Volo/Abp/SettingManagement/AbpSettingManagementApplicationModule.cs diff --git a/modules/tenant-management/test/Volo.Abp.TenantManagement.Domain.Tests/Volo/Abp/TenantManagement/AbpTenantManagementDomainTestModule.cs b/modules/tenant-management/test/Volo.Abp.TenantManagement.Domain.Tests/Volo/Abp/TenantManagement/AbpSettingManagementDomainTestModule.cs similarity index 100% rename from modules/tenant-management/test/Volo.Abp.TenantManagement.Domain.Tests/Volo/Abp/TenantManagement/AbpTenantManagementDomainTestModule.cs rename to modules/tenant-management/test/Volo.Abp.TenantManagement.Domain.Tests/Volo/Abp/TenantManagement/AbpSettingManagementDomainTestModule.cs diff --git a/modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Web/Navigation/AbpVirtualFileExplorerMenuContributor.cs b/modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Web/Navigation/VirtualFileExplorerMenuContributor.cs similarity index 100% rename from modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Web/Navigation/AbpVirtualFileExplorerMenuContributor.cs rename to modules/virtual-file-explorer/src/Volo.Abp.VirtualFileExplorer.Web/Navigation/VirtualFileExplorerMenuContributor.cs