Created
August 23, 2016 21:44
-
-
Save JoshuaCarroll/5b164883b1ce2a9c89025aa46ef609b9 to your computer and use it in GitHub Desktop.
Commands to install .Net core on a Mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| brew update | |
| brew install openssl | |
| ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/ | |
| ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/ | |
| # Install .NET Core SDK with official installer found here: https://go.microsoft.com/fwlink/?LinkID=809124 | |
| sudo install_name_tool -add_rpath /usr/local/opt/openssl/lib /usr/local/share/dotnet/shared/Microsoft.NETCore.App/1.0.0/System.Security.Cryptography.Native.dylib | |
| # Continue with step 3 at https://www.microsoft.com/net/core#macos |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ready to create a .Net app? Run this: