Go to file
Doug Bunting aa2beb83c2 Revert "Execute correct commands when building with Core CLR on Linux"
- bad merge; this commit should not have been included

This reverts commit 18d637dfc7.
2015-10-01 14:29:26 -07:00
build Revert "Execute correct commands when building with Core CLR on Linux" 2015-10-01 14:29:26 -07:00
build-template Update 'build.cmd' alias parameter to use full name. 2015-10-01 12:21:29 -07:00
tools
.gitattributes
.gitignore
CONTRIBUTING.md
KoreBuild.nuspec
LICENSE.txt
NuGet.Config Updating to dev NuGet.config 2015-09-29 13:10:25 -07:00
README.md
build.cmd
build.sh
makefile.shade

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.