Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.2 KB

build-source.md

File metadata and controls

38 lines (26 loc) · 1.2 KB

Build Azure SignalR Service SDK from Source

Building Azure SignalR Service SDK from source allows you tweak and customize the SDK, and to contribute your improvements back to the project.

Install pre-requistes

Building Azure SignalR Service SDK requires:

Clone the source code

For a new copy of the project, run:

git clone --recursive https://github.com/Azure/azure-signalr

or if you have already cloned the repository :

git clone https://github.com/Azure/azure-signalr
git submodule update --init --recursive

Building on command-line

You can build the entire project on command line with the dotnet command. Run command below in the repo's root folder.

dotnet build

Building in Visual Studio

Before opening our .sln files in Visual Studio or VS Code, it is suggested to run dotnet restore to make sure all the dependencies are restored correctly.

The solution file is AzureSignalR.sln in the root.