Go to file
ASP.NET CI 0d1d885205 Updating submodule(s)
Antiforgery => fad9c03b54
AuthSamples => c205f4bb61
AzureIntegration => 416336ed6e
BasicMiddleware => 284ed6e54a
BrowserLink => c04abc9a1dbe4dbbc795dacf0657de408ca76c83
Caching => 18798abb496a369b25f81840e3639f911100fa9d
Common => b8c24799919abef3c8d88f8a0f8614a351dc94be
Configuration => ddaf39e4a3823766db910d56c22a00efa7e341ee
CORS => 515c71baa2
DataProtection => 97a74f2907
DependencyInjection => 963500c95e8ec1bda8cba65a765912eb48d85477
Diagnostics => 7223215ac3
DotNetTools => 8553d2f1f3
EntityFrameworkCore => c23eb68fc47a278ccd771495a083b4c070b6b16b
EventNotification => d8cfdb881bc57eb45de6548c26b907f8ee70fa01
FileSystem => 4012e94fb65cf6be595fce6dbc286c43b4b34b4d
Hosting => dcca9c0150
HtmlAbstractions => 3514d3ce4b
HttpAbstractions => abe1bd8b16
HttpClientFactory => 661788389ca6ad6d39d417aa6eb702b57587891e
HttpSysServer => 515dcf2878
Identity => 3d647c5c3e
IISIntegration => 2f8c2c5f67
JavaScriptServices => 0b53b92bc6
JsonPatch => aa2d1cd8e9
KestrelHttpServer => 0b6638668a
Localization => 402146c4be
Logging => dfd49ac2909c1418a09e17e1bb4a5872405b13c5
MetaPackages => e6fb13ff42
Microsoft.Data.Sqlite => e6ded0f7716eb5e3fcd7c552be437da0b94e5f05
MusicStore => 5086579c42
Mvc => f31ddac714
MvcPrecompilation => bafcc9b5ae
Options => 7423900c5de164a9a71d02b189c98c3f0702f438
Proxy => e07c03e1b990eae7711c30c317d0f0801807c869
Razor => 21192c6d7b
ResponseCaching => a785ee1c3e
Routing => 22d17046a4
Scaffolding => f1216731fde4a75739218b7619c84520bf3f07ee
Security => 2697b0c9c4
ServerTests => 46a52b0e12
Session => 316b958015
SignalR => 50a095ba0f
StaticFiles => 24119b43cf
Templating => 6c0820fe1f
Testing => f7eee0e183e2b1df4bb593176ae105d1a49cb731
WebSockets => ed69d8416d

[auto-updated: submodules]
2018-01-23 16:07:00 -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-23 16:07:00 -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.