Go to file
Pranav K 83f1901844 Modify .gitattributes to ensure sh files always have LF line endings 2014-09-21 17:54:03 -07:00
build Adding kvm.sh to KoreBuild 2014-09-21 15:41:33 -07:00
build-template Updated the build template to use the new kvm 2014-09-05 01:33:39 -07:00
tools
.gitattributes Modify .gitattributes to ensure sh files always have LF line endings 2014-09-21 17:54:03 -07:00
.gitignore
CONTRIBUTING.md
KoreBuild.nuspec Change the author of package to MS OpenTech 2014-06-18 22:09:39 -07:00
LICENSE.txt
NuGet.Config Added NuGet.config 2014-05-23 02:38:24 -07:00
README.md
build.cmd Handle paths containing spaces in build.cmd 2014-08-06 18:09:26 +02:00
build.sh Bulding Universe does not require kvm 2014-09-11 06:23:54 -07:00
makefile.shade Add "update-release" target to merge dev branches to release 2014-09-16 13:43:27 -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.