chore: Update typo in error message

pull/13104/head
JRoger 3 years ago committed by GitHub
parent ea7ee98937
commit 91a6f41a18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -223,7 +223,7 @@ public abstract class AbpApplicationBase : IAbpApplication
{
if (_configuredServices)
{
throw new AbpInitializationException("Services have already been configured! If you call ConfigureServicesAsync method, you must have set AbpApplicationCreationOptions.SkipConfigureServices tu true before.");
throw new AbpInitializationException("Services have already been configured! If you call ConfigureServicesAsync method, you must have set AbpApplicationCreationOptions.SkipConfigureServices to true before.");
}
}
@ -231,7 +231,7 @@ public abstract class AbpApplicationBase : IAbpApplication
public virtual void ConfigureServices()
{
CheckMultipleConfigureServices();
var context = new ServiceConfigurationContext(Services);
Services.AddSingleton(context);

Loading…
Cancel
Save