Fix `AzureComponentFactory` is null (#274)

This commit is contained in:
yzt 2021-09-13 14:53:30 +08:00 коммит произвёл GitHub
Родитель 2224ad475e
Коммит 41ccdaa5c4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -2,6 +2,7 @@
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using Microsoft.Extensions.Azure;
using Microsoft.Extensions.DependencyInjection;
namespace Microsoft.Azure.WebJobs.Extensions.SignalRService
@ -25,6 +26,7 @@ namespace Microsoft.Azure.WebJobs.Extensions.SignalRService
}
builder.AddExtension<SignalRConfigProvider>();
builder.Services.AddAzureClientsCore();
builder.Services.AddSingleton<IServiceManagerStore, ServiceManagerStore>();
return builder;
}