Go to file
Pranav K d65251055e Updating dnvm 2015-06-24 13:58:01 -07:00
build Updating dnvm 2015-06-24 13:58:01 -07:00
build-template build: Enables FreeBSD support. 2015-06-23 07:53:13 -07:00
tools
.gitattributes
.gitignore
.travis.yml Update .travis.yml and appveyor.yml to build quietly. 2015-04-07 16:17:40 -07:00
CONTRIBUTING.md Update Home master -> Home dev 2015-05-12 11:53:38 -07:00
KoreBuild.nuspec
LICENSE.txt Update LICENSE.txt and license header on files. 2015-05-01 14:05:34 -07:00
NuGet.Config Renaming Nuget.org feed key name to Nuget 2015-03-09 20:07:42 -07:00
README.md Change ASP.NET vNext to ASP.Net 5 in the Readme.md 2015-01-22 11:02:24 -08:00
appveyor.yml Update .travis.yml and appveyor.yml to build quietly. 2015-04-07 16:17:40 -07:00
build.cmd
build.sh build: Enables FreeBSD support. 2015-06-23 07:53:13 -07:00
makefile.shade Add Antiforgery to repo list 2015-06-23 12:20:47 -07:00

README.md

Universe

This repo is to build the whole ASP.NET 5 stack.

Getting started

git clone git@github.com:aspnet/Universe.git
cd Universe
build

The default build will clone all known repos as subfolders. The clone will be the dev branch.

If the build is run subsequently it will git pull the dev branch rather than clone. Note! This will cause a merge if you have local changes. We may tweak how this is done if it causes problems.

After folders are up to date, build.cmd compile is executed in each of the enlisted subfolders.

If there are errors the build will continue with the next repo.

The last output is a list of which repos succeeded or failed.

build targets

build pull will only clone or pull all repos.

build compile this is the default target, described above.

build install works like build compile, but will run build.cmd install in each subfolder. This means any nupkg produced by the repo are copied into the local .nuget folder to be picked up by subsequent repositories. The subfolders are built in dependency order.

This project is part of ASP.NET 5. You can find samples, documentation and getting started instructions for ASP.NET 5 at the Home repo.