Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions samples/BidirectionChat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ It's a quick try of this sample. You will create an Azure SignalR Service and an
```bash
resourceGroup=myResourceGroup
signalrName=mySignalRName
region=eastus

# Create a resource group.
az group create --name $resourceGroup --location $region

az signalr create -n $signalrName -g $resourceGroup --service-mode Serverless --sku Standard_S1
# Get connection string for later use.
Expand All @@ -49,10 +53,6 @@ It's a quick try of this sample. You will create an Azure SignalR Service and an
# Function app and storage account names must be unique.
storageName=mystorageaccount
functionAppName=myserverlessfunc
region=eastus

# Create a resource group.
az group create --name $resourceGroup --location $region

# Create an Azure storage account in the resource group.
az storage account create \
Expand Down
2 changes: 1 addition & 1 deletion samples/BidirectionChat/csharp/extensions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.3" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.SignalRService" Version="1.2.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.SignalRService" Version="1.2.2" />
</ItemGroup>
<ItemGroup>
<None Update="content/index.html">
Expand Down