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.
19 lines
515 B
19 lines
515 B
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Volo.Abp.Modularity;
|
|
using Win.Abp.SerialNumber;
|
|
|
|
namespace Win.Abp.SerialNumber.Test
|
|
{
|
|
[DependsOn(
|
|
typeof(AbpSerialNumberGeneratorModule)
|
|
)]
|
|
public class SerialNumberTestsModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
var configuration = context.Services.GetConfiguration();
|
|
|
|
}
|
|
}
|
|
}
|