Skip to content
Roderic Bos edited this page Jan 19, 2016 · 11 revisions

#Install environment Follow basic installation from https://github.com/aspnet/Home repo

the in command line clone this repository

##Running the test web On Linux/Mac in rc1 you can restore from coreclr dnx so in the project folder:

  • dnvm install latest -r coreclr
  • dnu restore
  • dnx -p test/TestWeb/ kestrel

##Running the sampleweb in dotnet rc2

  • dnvm install latest -u -r coreclr
  • dotnet restore
  • cd samples/SampleWeb
  • dotnet run

If you want to use Visual Studio 2015 you need to install the normal clr version as well and for IIS Express the x86 version of coreclr so install these extra runtimes

  • dnvm install latest -u
  • dnvm install latest -u -arch x64
  • dnvm install latest -u -r coreclr -arch x86
Clone this wiki locally