Skip to content
Roderic Bos edited this page Sep 6, 2015 · 11 revisions

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

the in command line clone this repository

##MAC/Linux On Linux/Mac in beta 7 you can restore from coreclr dnx so in the project folder:

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

Currently on mac and linux, embedded files larger than 4k are not supported. The easiest way to use the edit functionality on these platforms is to remove the "resource":"..." line from the project.json of the MiniWeb.Core project. And then add a link in the test/TestWeb/wwwroot folder ln -s ../../../src/MiniWeb.Core/Resources/ miniweb-resource

##Windows For windows just do:

  • dnvm install latest -u -r coreclr
  • dnx -p test\TestWeb\ web

If you want to use Visual Studio 2015 you need to install the normal clr version as wel 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