-
Install .NET Core SDK Download and install .NET Core SDK from the following link -https://github.com/dotnet/core/blob/master/release-notes/rc4-download.md
-
Make sure that the version is
1.0.0-rc4-004771
after installing the SDK by running the following commanddotnet --version
-
Execute any .NET Core CLI command such as
dotnet new --help
command to start one initializing the local package cache. -
Install Visual Studio Code http://code.visualstudio.com/
To make sure that everthing is working fine, create a test project and run it using the following commands
-
Create a new directory using from command line or GUI
md Test
and set it as the current directorycd Test
-
Create a console project
dotnet new console
Output will beThe template "Console Application" created successfully.```
-
Restore packages
dotnet restore
-
Build and run the application
dotnet run
-
If the you the below output when you execute the application in Step 4 then everything is fine and we are good to go
Hello World!