Go to file
Javier Calvarro Nelson ef81eae0e2
Add Microsoft.AspNetCore.Identity.UI package
Adds the new Microsoft.AspNetCore.Identity.UI package to the list of packages.
2017-12-21 14:25:54 -08:00
.vscode Merge branch 'rel/2.0.3' into dev 2017-11-08 16:31:07 -08:00
build Add Microsoft.AspNetCore.Identity.UI package 2017-12-21 14:25:54 -08:00
modules Updating submodule(s) 2017-12-21 21:56:01 +00:00
scripts Catch any error in UpdateRepos 2017-12-07 11:25:34 -08:00
src Clean up shared framework generation. 2017-12-07 11:00:24 -08:00
.editorconfig
.gitattributes
.gitignore Merge branch 'rel/2.0.3' into dev 2017-11-08 16:31:07 -08:00
.gitmodules Add AuthSamples repo (#659) 2017-11-21 12:24:16 -08:00
CONTRIBUTING.md
LICENSE.txt
NuGet.config Merge branch 'rel/2.0.3' into dev 2017-11-08 16:31:07 -08:00
README.md Add a list of important properties. 2017-12-18 14:46:59 -08:00
build.cmd Update bootstrappers 2017-10-10 12:16:14 -07:00
build.sh Update bootstrappers 2017-10-10 12:16:14 -07:00
korebuild-lock.txt Updating BuildTools from 2.1.0-preview1-15626 to 2.1.0-preview1-15638 2017-12-19 09:44:04 -08:00
korebuild.json Add scripts to auto-update build tools and submodules (#618) 2017-10-25 11:39:53 -07:00
run.cmd Update bootstrappers 2017-10-10 12:16:14 -07:00
run.ps1 Fixup the run.sh build script 2017-12-20 10:04:45 -08:00
run.sh Add more bash magic to our script to avoid issues with unset and unbound variables 2017-12-20 11:56:12 -08:00
version.props Only produce one version of the runtime store, templates packages, and installers (#665) 2017-11-21 17:05:52 -08:00

README.md

Universe

Build infrastructure used to produce the whole ASP.NET Core stack.

Getting started

git clone --recursive https://github.com/aspnet/Universe.git
cd Universe
./build.cmd

Useful properties and targets

Property Purpose Example
/p:SkipTests//p:CompileOnly Only build repos, don't run the tests. /p:SkipTests=true
/p:TestOnly Don't package or verify things. /p:TestOnly=true
ENV:KOREBUILD_REPOSITORY_INCLUDE A list of the repositories to include in build (instead of all of them). ENV:KOREBUILD_REPOSITORY_INCLUDE=Antiforgery;CORS
ENV:KOREBUILD_REPOSITORY_EXCLUDE A list of the repositories to exclude from build (all the rest will be built). ENV:KOREBUILD_REPOSITORY_EXCLUDE=EntityFramework

More info

This project is part of ASP.NET Core. You can find samples, documentation and getting started instructions for ASP.NET Core at the Home repo.