You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
abp/src/Volo.Abp/Volo/Abp/Internal/InternalServiceCollectionEx...

14 lines
418 B

using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Volo.Abp.Modularity;
namespace Volo.Abp.Internal
{
internal static class InternalServiceCollectionExtensions
{
internal static void AddCoreAbpServices(this IServiceCollection services)
{
services.TryAddSingleton<IModuleLoader>(new ModuleLoader());
}
}
}