Skip to content

Commit 13b3683

Browse files
committed
reorganized
1 parent 2ae824e commit 13b3683

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/azure-signalr/signalr-quickstart-dotnet-core.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,7 @@ In this section, you will add the [Secret Manager tool](https://docs.microsoft.c
9191

9292
3. Add a secret named *Azure:SignalR:ConnectionString* to Secret Manager.
9393

94-
This secret is a accessed with the configuration API. This secret will contain the connection string to access your SignalR Service resource. *Azure:SignalR:ConnectionString* is the default configuration key that SignalR looks for in order to establish a connection. Replace the value in the command below with the connection string for your SignalR Service resource.
95-
96-
A colon (:) works in the configuration name with the configuration API on all supported platforms, see [Configuration by environment](https://docs.microsoft.com/aspnet/core/fundamentals/configuration/index?tabs=basicconfiguration&view=aspnetcore-2.0#configuration-by-environment).
94+
This secret will contain the connection string to access your SignalR Service resource. *Azure:SignalR:ConnectionString* is the default configuration key that SignalR looks for in order to establish a connection. Replace the value in the command below with the connection string for your SignalR Service resource.
9795

9896
This command must be executed in the same directory as the *.csproj* file.
9997

@@ -103,6 +101,9 @@ In this section, you will add the [Secret Manager tool](https://docs.microsoft.c
103101

104102
Secret Manager will only be used for testing the web app while it is hosted locally. In a later tutorial, you will deploy the chat web app to Azure. Once the web app is deployed to Azure, you will use an application setting instead of storing the connection string with Secret Manager.
105103

104+
This secret is a accessed with the configuration API. A colon (:) works in the configuration name with the configuration API on all supported platforms, see [Configuration by environment](https://docs.microsoft.com/aspnet/core/fundamentals/configuration/index?tabs=basicconfiguration&view=aspnetcore-2.0#configuration-by-environment).
105+
106+
106107
4. Open *Startup.cs* and update the `ConfigureServices` method to use Azure SignalR Service by calling the `services.AddSignalR().AddAzureSignalR()` method:
107108

108109
```csharp

0 commit comments

Comments
 (0)