Browse Source
Merge pull request #3519 from abpframework/maliming/patch2
Use the tempkey.rsa file in memory.
pull/3577/head
Halil İbrahim Kalkan
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
14 additions and
0 deletions
-
templates/app/aspnet-core/test/MyCompanyName.MyProjectName.TestBase/MyProjectNameTestBaseModule.cs
|
|
|
@ -4,6 +4,7 @@ using Volo.Abp.Authorization; |
|
|
|
using Volo.Abp.Autofac; |
|
|
|
using Volo.Abp.BackgroundJobs; |
|
|
|
using Volo.Abp.Data; |
|
|
|
using Volo.Abp.IdentityServer; |
|
|
|
using Volo.Abp.Modularity; |
|
|
|
using Volo.Abp.Threading; |
|
|
|
|
|
|
|
@ -17,6 +18,19 @@ namespace MyCompanyName.MyProjectName |
|
|
|
)] |
|
|
|
public class MyProjectNameTestBaseModule : AbpModule |
|
|
|
{ |
|
|
|
public override void PreConfigureServices(ServiceConfigurationContext context) |
|
|
|
{ |
|
|
|
PreConfigure<AbpIdentityServerBuilderOptions>(options => |
|
|
|
{ |
|
|
|
options.AddDeveloperSigningCredential = false; |
|
|
|
}); |
|
|
|
|
|
|
|
PreConfigure<IIdentityServerBuilder>(identityServerBuilder => |
|
|
|
{ |
|
|
|
identityServerBuilder.AddDeveloperSigningCredential(false, System.Guid.NewGuid().ToString()); |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context) |
|
|
|
{ |
|
|
|
Configure<AbpBackgroundJobOptions>(options => |
|
|
|
|