mirror of https://github.com/abpframework/abp.git
53 changed files with 18 additions and 413 deletions
@ -1,16 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.Account; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class AccountInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.AuditLogging; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class AuditLoggingInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
context.AddEfCoreConfigurationMethodDeclaration( |
|
||||
new EfCoreConfigurationMethodDeclaration( |
|
||||
"Volo.Abp.AuditLogging.EntityFrameworkCore", |
|
||||
"ConfigureAuditLogging" |
|
||||
) |
|
||||
); |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.BackgroundJobs; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class BackgroundJobsInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
context.AddEfCoreConfigurationMethodDeclaration( |
|
||||
new EfCoreConfigurationMethodDeclaration( |
|
||||
"Volo.Abp.BackgroundJobs.EntityFrameworkCore", |
|
||||
"ConfigureBackgroundJobs" |
|
||||
) |
|
||||
); |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,16 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.BasicTheme; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class BasicThemeInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.BlobStoring.Database; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class BlobStoringDatabaseInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
context.AddEfCoreConfigurationMethodDeclaration( |
|
||||
new EfCoreConfigurationMethodDeclaration( |
|
||||
"Volo.Abp.BlobStoring.Database.EntityFrameworkCore", |
|
||||
"ConfigureBlobStoring" |
|
||||
) |
|
||||
); |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,17 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Blogging; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class BloggingInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.CmsKit; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class BlobStoringDatabaseInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
context.AddEfCoreConfigurationMethodDeclaration( |
|
||||
new EfCoreConfigurationMethodDeclaration( |
|
||||
"Volo.CmsKit.EntityFrameworkCore", |
|
||||
"ConfigureCmsKit" |
|
||||
) |
|
||||
); |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,17 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Docs; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class DocsInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.FeatureManagement; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class FeatureManagementInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
context.AddEfCoreConfigurationMethodDeclaration( |
|
||||
new EfCoreConfigurationMethodDeclaration( |
|
||||
"Volo.Abp.FeatureManagement.EntityFrameworkCore", |
|
||||
"ConfigureFeatureManagement" |
|
||||
) |
|
||||
); |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,24 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.Identity |
|
||||
{ |
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class IdentityInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
context.AddEfCoreConfigurationMethodDeclaration( |
|
||||
new EfCoreConfigurationMethodDeclaration( |
|
||||
"Volo.Abp.Identity.EntityFrameworkCore", |
|
||||
"ConfigureIdentity" |
|
||||
) |
|
||||
); |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.IdentityServer; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class IdentityServerInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
context.AddEfCoreConfigurationMethodDeclaration( |
|
||||
new EfCoreConfigurationMethodDeclaration( |
|
||||
"Volo.Abp.IdentityServer.EntityFrameworkCore", |
|
||||
"ConfigureIdentityServer" |
|
||||
) |
|
||||
); |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,16 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.OpenIddict; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class OpenIddictInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.PermissionManagement; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class PermissionManagementInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
context.AddEfCoreConfigurationMethodDeclaration( |
|
||||
new EfCoreConfigurationMethodDeclaration( |
|
||||
"Volo.Abp.PermissionManagement.EntityFrameworkCore", |
|
||||
"ConfigurePermissionManagement" |
|
||||
) |
|
||||
); |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.SettingManagement; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class SettingManagementInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
context.AddEfCoreConfigurationMethodDeclaration( |
|
||||
new EfCoreConfigurationMethodDeclaration( |
|
||||
"Volo.Abp.SettingManagement.EntityFrameworkCore", |
|
||||
"ConfigureSettingManagement" |
|
||||
) |
|
||||
); |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.TenantManagement; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class AuditLoggingInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
context.AddEfCoreConfigurationMethodDeclaration( |
|
||||
new EfCoreConfigurationMethodDeclaration( |
|
||||
"Volo.Abp.TenantManagement.EntityFrameworkCore", |
|
||||
"ConfigureTenantManagement" |
|
||||
) |
|
||||
); |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,23 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.Users; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class UsersInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
context.AddEfCoreConfigurationMethodDeclaration( |
|
||||
new EfCoreConfigurationMethodDeclaration( |
|
||||
"Volo.Abp.Users.EntityFrameworkCore", |
|
||||
"ConfigureAbpUser" |
|
||||
) |
|
||||
); |
|
||||
|
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
@ -1,16 +0,0 @@ |
|||||
using System.Threading.Tasks; |
|
||||
using Microsoft.Extensions.DependencyInjection; |
|
||||
using Volo.Abp.DependencyInjection; |
|
||||
using Volo.Abp.Studio.ModuleInstalling; |
|
||||
|
|
||||
namespace Volo.Abp.VirtualFileExplorer; |
|
||||
|
|
||||
[Dependency(ServiceLifetime.Transient, ReplaceServices = true)] |
|
||||
[ExposeServices(typeof(IModuleInstallingPipelineBuilder))] |
|
||||
public class VirtualFileExplorerInstallerPipelineBuilder : ModuleInstallingPipelineBuilderBase, IModuleInstallingPipelineBuilder, ITransientDependency |
|
||||
{ |
|
||||
public async Task<ModuleInstallingPipeline> BuildAsync(ModuleInstallingContext context) |
|
||||
{ |
|
||||
return GetBasePipeline(context); |
|
||||
} |
|
||||
} |
|
||||
Loading…
Reference in new issue