Project setup
Last updated
Last updated
Before we begin with the instruction, we should describe how we expect your projects to be set up.
Create a new Console Application Project in Visual Studio (.NET 4.5.2 or higher)
Right click on the project in Solution Explorer and select “Manage NuGet Packages…”
Search for “NBitcoin” and install it (or NBitcoin.Mono on MAC and Linux.)
Tip: If you are on MAC or Linux and reference NBitcoin instead of NBitcoin.Mono you will be missing some classes.
NBitcoin is the .NET Bitcoin library, it is open-source and maintained by Nicolas Dorier, the main author of this book. This library should always be included if you do anything Bitcoin related in C#. NBitcoin supports cross-platform applications.
NBitcoin lets you debug into its code to make your life easier. For this feature to work make sure you have source server support enabled in Visual Studio (Tools/Options -> Debugging/General -> Enable source server support).
Now, if you step into NBitcoin's code, the source code will be automatically fetched from GitHub, and appear in the Visual Studio Debugger.
If you want to use .NET Core, first install .NET Core as documented here.
Then:
Then edit your Program.cs:
You can then run with