Open Source Web Application Framework for ASP.NET Core
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.
 
 
 
 
 
 

25 lines
659 B

using System;
using Volo.Abp.Data;
using Volo.Abp.Identity.MongoDB;
using Volo.Abp.IdentityServer.MongoDB;
using Volo.Abp.Modularity;
using Volo.Abp.Uow;
namespace Volo.Abp.IdentityServer;
[DependsOn(
typeof(AbpIdentityServerTestBaseModule),
typeof(AbpIdentityServerMongoDbModule),
typeof(AbpIdentityMongoDbModule)
)]
public class AbpIdentityServerMongoDbTestModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpDbConnectionOptions>(options =>
{
options.ConnectionStrings.Default = MongoDbFixture.GetRandomConnectionString();
});
}
}