How To : ASP.NET vNext : Step by Step Setup on Mac and console app 02 December 2014 Robert Amiscaray (0) ASP.NET vNext Step by Step setup on Mac and console appI have put together a sequence of continuous steps for running vNext on your MacOpen Terminal Install RubyInstall Homebrew by running:ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"brew install wgetRun the brew command to tap the ASP.NET vNext related git repositoriesbrew tap aspnet/kTo delete the previous tap commandsbrew untap aspnet/kRun install for KVM to install the latest KRE packagebrew install kvmRun the following if kvm is not recognized by terminalsource kvm.shSwitch directories. Replace {username} with your username.cd /users/{username}/DocumentsMake a new directorymkdir C#cd C#Use vi to create a new file called Program.csvi Program.cs:iusing System;public class Program{ public static void Main() { Console.WriteLine("Hello World"); }}press ESC:wpress ESC:q!Use vi to create a new file called project.jsonvi project.json:i{ "dependencies": { }, "frameworks": { "aspnet50": {}, "aspnetcore50": { "dependencies": { "System.Console": “4.0.0-beta-*” } } }}press ESC:wpress ESC:q!Run the kpm restore command.kpm restoreRun the programk runReferences:vNext home page is http://www.asp.net/vnextvNext Source code is https://github.com/aspnet/homevNext Wiki is https://github.com/aspnet/Home/wiki