Go to file
ASP.NET CI cf0e641948 Updating submodule(s)
Antiforgery => fc1a8842bc
AzureIntegration => b8b49c0514
BasicMiddleware => dd03838728
BrowserLink => bce71cfea03b18e2d7f6ae75e656a2f6fb62f576
Caching => d73fc25b5d3843f8211a58fdbcd0b69da86225f4
Common => debf6c981af8a061eddc189587c64da6f4420ddd
Configuration => 6d0fd2a800a1333c19c9e299bc946b47feb57f1a
CORS => b908f6ba47
DataProtection => dadc853efd
DependencyInjection => 5238b8ccf7bc6592a5c6a1da8635ed2871cfabbf
Diagnostics => 2b3e05a46e
EntityFrameworkCore => 6c850786cab08bc82468e9e1f1590bf3aefb08aa
EventNotification => 8589b602eefab8f44f59824c33e4cd862300c4d7
FileSystem => 907380a2399d9387f49731b1754c04989d443301
Hosting => ad2fd9e4f5
HtmlAbstractions => 26c76a2f17
HttpAbstractions => 2f109938d2
HttpClientFactory => e7ef7d1e0c8e68ccd67c73208d5f24aac92b0b27
HttpSysServer => e40cf72fce
IISIntegration => 9c4a784891
JavaScriptServices => 370b5f7341
JsonPatch => 8fb433d276
Localization => a2b8916285
Logging => a2d209aec77936c197482d3c8cb1099ddb8ee53e
MetaPackages => 702cadf325
MvcPrecompilation => daf4d0f766
Options => 90890f1b185c73251c1cf511c96eca911e14218b
Proxy => 56f717fd044a36c1e3036abf2c5e1453c6b479c0
ResponseCaching => fe0696c9ba
Routing => d6c37fa77c
Scaffolding => 81f4516af723bfc088ef5280eef97852194b7a84
Security => a940b6e356
ServerTests => 5110f8641a
Session => bedf5a55f7
StaticFiles => 9080f64383
Templating => 2898129c92
Testing => 9bd6803cba6d440da88ba40e1b645ec50d297c04

[auto-updated: submodules]
2018-01-24 15:27:13 -08:00
.vscode
build Exclude native assets from Microsoft.NETCore.App 2018-01-23 15:03:00 -08:00
docs Add doc for common questions about working with git-submodules [ci skip] 2018-01-18 20:42:12 -08:00
modules Updating submodule(s) 2018-01-24 15:27:13 -08:00
scripts
src Add support for building Microsoft.AspNetCore.Analyzers metapackage 2018-01-22 13:54:50 -08:00
.appveyor.yml Skip appveyor builds for automated updates [ci skip] 2018-01-19 14:10:13 -08:00
.editorconfig
.gitattributes
.gitignore
.gitmodules
.travis.yml
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md
build.cmd
build.sh
korebuild-lock.txt Updating BuildTools from 2.1.0-preview1-15670 to 2.1.0-preview1-15671 2018-01-16 12:05:21 -08:00
korebuild.json
run.cmd
run.ps1
run.sh
version.props

README.md

Universe

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

Released Builds

ASP.NET Core Runtime Store

The runtime store can be downloaded from here.

NuGet packages

All published ASP.NET Core packages can be found on https://www.nuget.org/profiles/aspnet.

Commonly referenced packages:

Package NuGet.org
Microsoft.AspNetCore.All
Microsoft.AspNetCore

Daily builds

NuGet packages

Packages can be found on https://dotnet.myget.org/gallery/aspnetcore-dev. This feed may include packages that will not be supported in a officially released build.

Commonly referenced packages:

Package MyGet
Microsoft.AspNetCore.All
Microsoft.AspNetCore

ASP.NET Core Shared Framework

Platform Latest (dev branch)
Windows (x64)
Installer (exe)
Archive (zip)
Windows (x86)
Installer (exe)
Archive (zip)
macOS (x64)
Archive (tar.gz)
Linux (x64)
Archive (tar.gz)
Debian/Ubuntu (x64)
Installer (deb)
RedHat/Fedora (x64)
Installer (rpm)

Building from source

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

Useful properties and targets

Property Purpose Example
SkipTests Only build repos, don't run the tests. /p:SkipTests=true
TestOnly Don't package or verify things. /p:TestOnly=true
KOREBUILD_REPOSITORY_INCLUDE A list of the repositories to include in build (instead of all of them). $env:KOREBUILD_REPOSITORY_INCLUDE='Antiforgery;CORS'
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.