Go to file
Pranav K faf91c06e0 * Use --quiet for git pull and git clone so git fetch messages do not show up in CI
error logs.
2015-09-28 21:09:12 -07:00
build * Use --quiet for git pull and git clone so git fetch messages do not show up in CI 2015-09-28 21:09:12 -07:00
build-template Update build-template 2015-09-17 09:21:08 -07:00
tools
.gitattributes
.gitignore
CONTRIBUTING.md
KoreBuild.nuspec Updating licenses 2015-09-11 10:22:16 -07:00
LICENSE.txt
NuGet.Config
README.md
build.cmd Updating Sake to always use latest version 2015-09-09 15:18:10 -07:00
build.sh Updating Sake to always use latest version 2015-09-09 15:18:10 -07:00
makefile.shade Reacting to feed and NuGet.config renames 2015-09-28 21:08:34 -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.