Go to file
ASP.NET CI d12352e1ba Updating submodule(s)
AADIntegration => dc05edaca2
Antiforgery => fd5533634f
AuthSamples => 8131406c2d
AzureIntegration => 97d236d5ae
BasicMiddleware => eb5499acbd
BrowserLink => 5d665c9b7096c8045f163c289595c8dfd598f6fb
Caching => 42a1dfeeeb73a01df52879457e184be21e72b677
Common => 3f949ded1d078e225dae700f2036711478c4552d
Configuration => 0691f506f1acebaa2ebd805b90b9261931597ca1
CORS => a743eb057c
DataProtection => a0c62afacd
DependencyInjection => 55bea3f293b428dd564ca63b844a738dfae43f7a
Diagnostics => 9355e78494
DotNetTools => a59aaa1203
EntityFrameworkCore => 51dd744178083efc58251b7a0246902bd29decfd
EventNotification => 3782d073fa109ce768769930b2a1b95cea215980
FileSystem => 798d474b39424a46249cba3b1874b0830d213c28
Hosting => 45d0a0ad98
HtmlAbstractions => b392ef5ed7
HttpAbstractions => 7ddbde8b68
HttpClientFactory => c1e523d2478fec3c6af5f51a4368835d4778a4c4
HttpSysServer => c07699a58b
Identity => 8c79001d18
IISIntegration => 95e219d3dd
JavaScriptServices => 424e5ed91a
JsonPatch => 6c6cd89086
KestrelHttpServer => 50a9af203c
Localization => dcff2c91a0
Logging => bc9dc0d4a017fb29f0cefdcd5d43e8073d39fdf9
MetaPackages => c3ca4e6d54
Microsoft.Data.Sqlite => 3612ead2eb4c63e73d0e0523d329a29181a3cf3b
MusicStore => cb20094b69
Mvc => 8ec3870a92
MvcPrecompilation => 19d77f0295
Options => 592c785dcb6ef841e597b25433cb766c453dd8f1
Proxy => 21df8023f052f99bb2f5e03b3a148a54817f5559
Razor => bae3b56959
ResponseCaching => e619bb7187
Routing => 155e1ff420
Scaffolding => 47857efdadd715d09a238df463cd2ec201d5e9c4
Security => 5e8f54a55f
ServerTests => 0bf79e8d59
Session => 3f379ef910
SignalR => 1957655653
StaticFiles => a2c3408a61
Templating => a8c3615df4
Testing => aadb685f7ca4e938a640369e1de67843bb1cc019
WebHooks => ae993f09e48aafa87c51b9ce9cef39918bf9f598
WebSockets => a6e2dcc640

[auto-updated: submodules]
2018-04-20 00:15:56 +00:00
.vscode
build Revert "Add Microsoft.AspNetCore.AzureAppServices.SiteExtension to normal builds (#1086)" 2018-04-19 15:13:07 -07:00
docs
modules Updating submodule(s) 2018-04-20 00:15:56 +00:00
scripts Fix script target 2018-04-17 12:26:08 -07:00
src
.appveyor.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules Adapt dev to release/2.1 2018-04-17 12:24:03 -07:00
.travis.yml
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md
build.cmd
build.sh
dockerbuild.sh
korebuild-lock.txt Updating BuildTools from 2.1.0-rc1-15772 to 2.1.0-rc1-15773 2018-04-19 16:54:55 +00:00
korebuild.json Adapt dev to release/2.1 2018-04-17 12:24:03 -07:00
run.cmd
run.ps1
run.sh
version.props Adapt dev to release/2.1 2018-04-17 12:24:03 -07:00

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.App
Microsoft.AspNetCore

Daily builds

NuGet packages

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

Commonly referenced packages:

Package MyGet
Microsoft.AspNetCore.App
Microsoft.AspNetCore

ASP.NET Core Shared Framework

Platform Latest (dev branch)
release/2.1
Windows (x64) Installer (exe)
Archive (zip)
Installer (exe)
Archive (zip)
Windows (x86) Installer (exe)
Archive (zip)
Installer (exe)
Archive (zip)
macOS (x64) Archive (tar.gz) Archive (tar.gz)
Linux (x64) Archive (tar.gz) Archive (tar.gz)
Linux (arm32) Archive (tar.gz) (not available yet)
Debian/Ubuntu (x64) Installer (deb) Installer (deb)
RedHat/Fedora (x64) Installer (rpm) Installer (rpm)
Alpine Linux 3.6 (x64) Archive (tar.gz) Archive (tar.gz)

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.