File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,24 @@ On Linux, the following components are needed:
30
30
31
31
e.g. for Ubuntu 14.04, follow the steps below:
32
32
33
- ` sudo apt-get update `
33
+ ``` sh
34
+ sudo apt-get update
35
+ sudo apt-get install git clang-3.9 cmake libunwind8 curl
36
+ ```
34
37
35
- ` sudo apt-get install git clang-3.9 cmake libunwind8 curl `
38
+ Follow instructions on how to [ install .NET Core SDK 2.0+ on Ubuntu ] ( https://www.microsoft.com/net/learn/get-started/linux/ubuntu14-04 ) :
36
39
37
- Follow instructions on how to [ install .NET Core SDK 2.0+ on Ubuntu] ( https://www.microsoft.com/net/learn/get-started/linux/ubuntu14-04 ) .
40
+ ``` sh
41
+ # Register Microsoft key and feed
42
+ wget -q packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/14.04/packages-microsoft-prod.deb
43
+ sudo dpkg -i packages-microsoft-prod.deb
44
+ # Install the SDK
45
+ sudo apt-get install apt-transport-https
46
+ sudo apt-get update
47
+ sudo apt-get install dotnet-sdk-2.1.105
48
+ ```
49
+
50
+ For more detailed info click [ here] ( https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites?tabs=netcore2x ) .
38
51
39
52
### macOS
40
53
You can’t perform that action at this time.
0 commit comments