-
Book Overview & Buying
-
Table Of Contents
SignalR: Real-time Application Development - Second Edition
By :
As with any craft, we need tools to build anything. Here is a summary of some of the tools we will be using to create our applications.
In this book, you will find that Visual Studio 2013 Professional is used. For the iOS content, we will be using Visual Studio—although it is in conjunction with Xamarin and Apple's Xcode.
You can use the community edition of Visual Studio 2013 if you don't have a license to Visual Studio 2013 professional or higher. It can be downloaded from http://www.visualstudio.com/.
All third-party dependencies and all the libraries mentioned in this chapter, for instance, will be pulled in using NuGet.
In the interest of saving space in the book, the description of how to use NuGet sits here and only here. The other chapters will refer back to this recipe.
If you need to install NuGet first, visit http://www.nuget.org to download and install it. Once this is done, you can use NuGet by following these steps:


In some cases, we will need a specific version of a file. This is not something we can do through the UI, and we will need the Package Manager Console. To specify a specific version of a package, if needed, the syntax of the command in the Package Manager Console is as follows:
install-package <package-name> -version <package-version>


By now, you should be familiar with how you can add NuGet packages to reference third-party dependencies, which will be used throughout the book.