Go to file
Pranav K 27e373b277 Copy nupkgs from artifacts directory of project built 2016-03-01 13:06:21 -08:00
KoreBuild-dotnet Remove mac limit for open files 2016-02-26 16:42:14 -08:00
build Fix missing parantheses 2016-02-18 10:50:39 -08:00
build-template
build-template-dotnet Update template's `build.cmd` to match best of our repo's 2016-02-24 12:15:02 -08:00
tools
.gitattributes
.gitignore
CONTRIBUTING.md
KoreBuild.nuspec
LICENSE.txt
NuGet.Config Switch to v3 NuGet feeds 2016-02-19 09:21:39 -08:00
README.md
build.cmd Publish packages to CI_VOLATILE_SHARE at the end of the build 2016-02-29 10:19:10 -08:00
build.sh
makefile.shade Copy nupkgs from artifacts directory of project built 2016-03-01 13:06:21 -08: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.