mirror of https://github.com/abpframework/abp
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.
27 lines
498 B
27 lines
498 B
using Volo.Abp.Autofac;
|
|
using Volo.Abp.Json.Newtonsoft;
|
|
using Volo.Abp.Json.SystemTextJson;
|
|
using Volo.Abp.Modularity;
|
|
|
|
namespace Volo.Abp.Json;
|
|
|
|
[DependsOn(
|
|
typeof(AbpAutofacModule),
|
|
typeof(AbpJsonSystemTextJsonModule),
|
|
typeof(AbpTestBaseModule)
|
|
)]
|
|
public class AbpJsonSystemTextJsonTestModule : AbpModule
|
|
{
|
|
|
|
}
|
|
|
|
[DependsOn(
|
|
typeof(AbpAutofacModule),
|
|
typeof(AbpJsonNewtonsoftModule),
|
|
typeof(AbpTestBaseModule)
|
|
)]
|
|
public class AbpJsonNewtonsoftTestModule : AbpModule
|
|
{
|
|
|
|
}
|