Skip to content

Commit

Permalink
Adding Instructions to donwload .NET 5 preview SDK (#1088)
Browse files Browse the repository at this point in the history
  • Loading branch information
joperezr committed May 26, 2020
1 parent 342914e commit 94424fc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Documentation/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ How to Contribute

## Recommended Software
1. (If building on Windows) - **[Visual Studio 2019](https://visualstudio.microsoft.com/vs/preview/)** (Community, Professional, Enterprise) with the latest updates. This is not required for building the repo, but it will help a lot if the intent is to change the code or add new bindings.
1. **[.NET Core SDK](https://dotnet.microsoft.com/download/dotnet-core/3.0)** To ensure the install worked, make sure you can call `dotnet` tool from a command prompt
1. **.NET Core SDK** To ensure the install worked, make sure you can call `dotnet` tool from a command prompt. We now require .NET 5 preview versions of the SDKs because of our central infrastructure, you can find the installers per platform here:
- For Windows: [Link to .NET 5 preview installer for Windows](https://dotnetcli.azureedge.net/dotnet/Sdk/5.0.100-preview.5.20251.2/dotnet-sdk-5.0.100-preview.5.20251.2-win-x64.exe) **This is important as you won't be able to open projects on Visual Studio if you don't install this machine-wide**
- For Linux: [Link to .NET 5 preview SDK for Linux](https://dotnetcli.azureedge.net/dotnet/Sdk/5.0.100-preview.5.20251.2/dotnet-sdk-5.0.100-preview.5.20251.2-linux-x64.tar.gz)
- For OSX: [Link to .NET 5 preview SDK for OSX](https://dotnetcli.azureedge.net/dotnet/Sdk/5.0.100-preview.5.20251.2/dotnet-sdk-5.0.100-preview.5.20251.2-osx-x64.tar.gz)

## Building from the Command Line

Expand All @@ -17,6 +20,8 @@ For more information on how to turn of parts of the build, please type `build.cm

## Building from Visual Studio (Windows only)

**Make sure you have the .NET 5 preview SDK installed machine-wide in order to be able to open projects in VisualStudio or else you will get project loading problems. You can find the link above.**

In order to be able to open and build most projects in the repo with Visual Studio, you would have to already have run `build.cmd` from the root at least once. This is because this command will restore basic tooling and SDKs that most of the repo relies on. Once you have done that once, you should be able to open individual projects with Visual Studio, and should be able to build them in the IDE.

When opening the main library project (System.Device.Gpio) in Visual Studio, you can select the right configuration depending if you want to build the Linux or the Windows Configuration:
Expand Down

0 comments on commit 94424fc

Please sign in to comment.