Skip to content
This repository was archived by the owner on Mar 12, 2021. It is now read-only.

Commit bcd22e5

Browse files
committed
YouReadMe - filling ReadMe
1 parent d101afc commit bcd22e5

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

README.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,47 @@
11
ASP.NET SignalR C++ Client
22
========
3+
4+
SignalR C++ Client is a native client for the [ASP.NET SignalR](https://github.com/SignalR/SignalR/).
5+
6+
####Supported platforms
7+
8+
9+
The bits that ship on NuGet currently can be used in Win32/x64 native windows desktop applications built with Visual Studio 2013.
10+
11+
####Get it on NuGet
12+
13+
`Install-Package Microsoft.AspNet.SignalR.Client.Cpp.v120.WinDesktop -Pre`
14+
15+
####Use it
16+
17+
The repo contains a separate solution (samples_VS2013.sln) with sample projects showing how to use the client to communicate with a SignalR server using Persistent Connections and Hubs.
18+
19+
####Nightly builds
20+
21+
Signed nigthly builds are available on a separate feed. You can find them [here](https://www.myget.org/gallery/aspnetvnext)
22+
23+
####Building the Code
24+
25+
* Clone the repo:
26+
27+
`git clone https://github.com/aspnet/SignalR-Client-Cpp.git`
28+
29+
* Build from Visual Studio
30+
Open the signalrclient_VS2013.sln in Visual Studio 2013 and build.
31+
32+
* Build from command line
33+
* Open the Developer Command Prompt for VS2013
34+
* Run:
35+
* `build.cmd /t:Build` to build the code
36+
* `build.cmd` to build the code and run tests
37+
* `build.cmd /t:CreatePackage` to build the code and create a private NuGet package
38+
39+
####Running tests
40+
41+
* From Visual Studio
42+
* to run unit tests select signalrclienttests as a start project and run
43+
* to run end-to-end test start the test host by selecting the signalrclient-testhost project as a start project and then select the signalrclient-e2e-tests as a startt project and run
44+
45+
* From command line
46+
* Open the Developer Command Prompt for VS2013
47+
* run `build.cmd`

0 commit comments

Comments
 (0)