Skip to content
This repository was archived by the owner on Dec 18, 2018. It is now read-only.

Commit 263dd0e

Browse files
authored
Fix #324 by adding streaming support to the server (#461)
1 parent 39fd697 commit 263dd0e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1756
-393
lines changed

SignalR.sln

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 15
3-
VisualStudioVersion = 15.0.26510.0
3+
VisualStudioVersion = 15.0.26526.1
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{DA69F624-5398-4884-87E4-B816698CDE65}"
66
EndProject
77
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{83B2C3EB-A3D8-4E6F-9A3C-A380B005EF31}"
88
ProjectSection(SolutionItems) = preProject
9+
build\common.props = build\common.props
10+
build\dependencies.props = build\dependencies.props
11+
build\Key.snk = build\Key.snk
912
NuGet.config = NuGet.config
13+
build\repo.props = build\repo.props
14+
build\repo.targets = build\repo.targets
1015
EndProjectSection
1116
EndProject
1217
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{C4BC9889-B49F-41B6-806B-F84941B2549B}"
@@ -64,6 +69,8 @@ EndProject
6469
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{6CEC3DC2-5B01-45A8-8F0D-8531315DA90B}"
6570
ProjectSection(SolutionItems) = preProject
6671
test\Common\ArrayOutput.cs = test\Common\ArrayOutput.cs
72+
test\Common\ByteArrayExtensions.cs = test\Common\ByteArrayExtensions.cs
73+
test\Common\ChannelExtensions.cs = test\Common\ChannelExtensions.cs
6774
test\Common\TaskExtensions.cs = test\Common\TaskExtensions.cs
6875
EndProjectSection
6976
EndProject

build/dependencies.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<RuntimeFrameworkVersion Condition="'$(TargetFramework)'=='netcoreapp2.0'">2.0.0-*</RuntimeFrameworkVersion>
1414
<TestSdkVersion>15.3.0-*</TestSdkVersion>
1515
<XunitVersion>2.3.0-beta2-*</XunitVersion>
16+
<RxVersion>3.1.1</RxVersion>
1617

1718
<!--
1819
TODO remove in next update of xunit

0 commit comments

Comments
 (0)