Fix CommonStartup start method signature
This commit is contained in:
		
							parent
							
								
									a0fd946748
								
							
						
					
					
						commit
						c6f0eecd1e
					
				@ -7,6 +7,7 @@ using Connected.Net.Endpoints;
 | 
			
		||||
using Connected.Net.Server;
 | 
			
		||||
using Connected.Security.Identity;
 | 
			
		||||
using Connected.ServiceModel;
 | 
			
		||||
using Microsoft.Extensions.Configuration;
 | 
			
		||||
using Microsoft.Extensions.DependencyInjection;
 | 
			
		||||
 | 
			
		||||
[assembly: MicroService(MicroServiceType.Service)]
 | 
			
		||||
@ -21,8 +22,7 @@ internal class CommonStartup : Startup
 | 
			
		||||
		services.AddScoped(typeof(IIdentityService), typeof(IdentityService));
 | 
			
		||||
		services.AddTransient(typeof(IDocumentLocker<,>), typeof(DocumentLocker<,>));
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	protected override async Task OnInitialize(Dictionary<string, string> args)
 | 
			
		||||
	protected override async Task OnInitialize(IConfiguration config)
 | 
			
		||||
	{
 | 
			
		||||
		if (Services is null || Services.GetService<IContextProvider>() is not IContextProvider provider)
 | 
			
		||||
			return;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user