Skip to content

Commit

Permalink
Merge pull request #275 from Azure/dev
Browse files Browse the repository at this point in the history
Fix `AzureComponentFactory` is null (#274)
  • Loading branch information
Y-Sindo authored Sep 13, 2021
2 parents ebd989f + 41ccdaa commit edd4123
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -25,6 +26,7 @@ public static IWebJobsBuilder AddSignalR(this IWebJobsBuilder builder)
}

builder.AddExtension<SignalRConfigProvider>();
builder.Services.AddAzureClientsCore();
builder.Services.AddSingleton<IServiceManagerStore, ServiceManagerStore>();
return builder;
}
Expand Down

0 comments on commit edd4123

Please sign in to comment.