Skip to content

Commit d5b53dc

Browse files
committed
Fix pricing info and update System.IO.Pipelines version
1 parent a11ad52 commit d5b53dc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Diff for: aspnet-samples/AdvancedChatRoom/ChatSample.AspNet.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
<HintPath>packages\System.IdentityModel.Tokens.Jwt.5.2.1\lib\net451\System.IdentityModel.Tokens.Jwt.dll</HintPath>
146146
</Reference>
147147
<Reference Include="System.IO.Pipelines, Version=4.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
148-
<HintPath>packages\System.IO.Pipelines.4.5.0\lib\netstandard2.0\System.IO.Pipelines.dll</HintPath>
148+
<HintPath>packages\System.IO.Pipelines.4.5.1\lib\netstandard2.0\System.IO.Pipelines.dll</HintPath>
149149
</Reference>
150150
<Reference Include="System.Memory, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
151151
<HintPath>packages\System.Memory.4.5.0\lib\netstandard2.0\System.Memory.dll</HintPath>

Diff for: aspnet-samples/AdvancedChatRoom/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<package id="Owin" version="1.0" targetFramework="net461" />
4141
<package id="System.Buffers" version="4.5.0" targetFramework="net461" />
4242
<package id="System.IdentityModel.Tokens.Jwt" version="5.2.1" targetFramework="net461" />
43-
<package id="System.IO.Pipelines" version="4.5.0" targetFramework="net461" />
43+
<package id="System.IO.Pipelines" version="4.5.1" targetFramework="net461" />
4444
<package id="System.Memory" version="4.5.0" targetFramework="net461" />
4545
<package id="System.Numerics.Vectors" version="4.4.0" targetFramework="net461" />
4646
<package id="System.Runtime.CompilerServices.Unsafe" version="4.5.0" targetFramework="net461" />

Diff for: aspnet-samples/ChatRoom/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ First let's provision a SignalR service on Azure.
1818

1919
Select a pricing tier. There're two pricing tiers:
2020

21-
* Free: which can handle 100 connections at the same time and can send and receive one million messages in a month.
22-
* Basic: which has 1000 concurrent connections and 75 millions message per month limit for *one unit*. You can scale up to 10 units for a single service instance and you'll be charged by the number of units you use.
21+
* Free: which can handle 20 connections at the same time and can send and receive 20,000 messages in a day.
22+
* Standard: which has 1000 concurrent connections and one million messages per day limit for *one unit*. You can scale up to 100 units for a single service instance and you'll be charged by the number of units you use.
2323

2424
3. Click "Create", your SignalR service will be created in a few minutes.
2525

Diff for: samples/ChatRoom/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ First let's provision a SignalR service on Azure.
1818

1919
Select a pricing tier. There're two pricing tiers:
2020

21-
* Free: which can handle 100 connections at the same time and can send and receive one million messages in a month.
22-
* Basic: which has 1000 concurrent connections and 75 millions message per month limit for *one unit*. You can scale up to 10 units for a single service instance and you'll be charged by the number of units you use.
21+
* Free: which can handle 20 connections at the same time and can send and receive 20,000 messages in a day.
22+
* Standard: which has 1000 concurrent connections and one million messages per day limit for *one unit*. You can scale up to 100 units for a single service instance and you'll be charged by the number of units you use.
2323

2424
3. Click "Create", your SignalR service will be created in a few minutes.
2525

0 commit comments

Comments
 (0)