Go to file
David Fowler 92e0c16499 Made universe mono ready
- Added build.sh to universe
- Updated makefile to run build.sh instead of build.cmd
- Updated build.sh script
2014-05-23 03:15:48 -07:00
build Fix build break 2014-05-22 18:36:33 -07:00
build-template Made universe mono ready 2014-05-23 03:15:48 -07:00
tools * Adding trace listener to ProjectKClone 2014-03-31 11:22:42 -07:00
.gitattributes
.gitignore
CONTRIBUTING.md Create CONTRIBUTING.md 2014-05-13 01:03:19 -07:00
KoreBuild.nuspec Updating KoreBuild to use kvm/kpm/kre 2014-05-02 14:29:57 -07:00
LICENSE.txt Create LICENSE.txt 2014-05-08 16:34:19 -07:00
NuGet.Config Added NuGet.config 2014-05-23 02:38:24 -07:00
README.md Update README.md 2014-05-12 21:21:03 -07:00
build.cmd
build.sh Made universe mono ready 2014-05-23 03:15:48 -07:00
makefile.shade Made universe mono ready 2014-05-23 03:15:48 -07:00

README.md

Universe

This repo is to build the whole ASP.NET vNext 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 vNext. You can find samples, documentation and getting started instructions for ASP.NET vNext at the Home repo.