@@ -58,7 +58,7 @@ Ensure you're running the latest version of the CLI via the upgrade command.
58
58
az upgrade
59
59
```
60
60
61
- Next, install or update the Azure Web PubSub extension for the CLI.
61
+ Next, install or update the Azure Web PubSub extension for the CLI if it wasn't installed with ` az upgrade ` .
62
62
63
63
``` azurecli
64
64
az extension add --name webpubsub --upgrade
@@ -79,7 +79,7 @@ WEB_PUBSUB_NAME="<your-unique-name>"
79
79
``` azurepowershell
80
80
$ResourceGroupName = 'webpubsub-resource-group'
81
81
$Location = 'EastUS'
82
- $WebPubSubName = ` <YourUniqueName>`
82
+ $WebPubSubName = ' <YourUniqueName>'
83
83
```
84
84
85
85
---
@@ -123,7 +123,7 @@ az webpubsub create `
123
123
--name $WebPubSubName `
124
124
--location $Location `
125
125
--resource-group $ResourceGroupName `
126
- --sku Free_F1 `
126
+ --sku Free_F1
127
127
```
128
128
129
129
---
@@ -187,7 +187,8 @@ You'll use the Azure Web PubSub SDK to publish a message to all the clients conn
187
187
188
188
### Set up the project to publish messages
189
189
190
- Select the language for your project. The dependencies for each language are installed in the steps for that language.
190
+ ou will need to open a new command shell for this project.
191
+ Now, select the language for your project. Note that the dependencies for each language are installed in the steps for that language.
191
192
192
193
# [ C#] ( #tab/csharp )
193
194
@@ -276,7 +277,7 @@ Select the language for your project. The dependencies for each language are in
276
277
1. Run the following command to publish a message to the service:
277
278
278
279
` ` ` bash
279
- export WebPubSubConnectionString=$connection -string
280
+ export WebPubSubConnectionString=$connection_string
280
281
node publish " Hello World"
281
282
` ` `
282
283
0 commit comments