Go to file
ASP.NET CI c110bce9b8 Updating submodule(s)
AADIntegration => 98a6c5875e
Antiforgery => 5e0abc148d
AuthSamples => 64fdfa01bf
AzureIntegration => 8e88fce5bb
BasicMiddleware => 40510c0aff
BrowserLink => 77e7d118e2588fb48d9c09c1e894f48a06f9adaa
Caching => 4bc52af107f33a7a39dfab494a4b9919cb036b94
Configuration => 43b6a9a2625c2948222ff31ebd6f6c87b5b198b6
CORS => a2f354a436
DataProtection => 98925ab99f
DependencyInjection => 8f1f1c6cf1eb9afa156a1225516879aa493713bf
Diagnostics => 3296a4f040
DotNetTools => 124b6ba9a1
EntityFrameworkCore => b7588f7dc371493b8b7c62be70327ed808630426
EventNotification => 3ed3699756f886da2a1a0c7321865c3ca761f5b7
FileSystem => 906acc47d09d58b3ddeffea95b4ce60637e87940
Hosting => de49ba74db
HtmlAbstractions => 2b9d2c1c97
HttpAbstractions => 33daa10583
HttpClientFactory => 64ed5889635b07b61923ed5fd9c8b69c997deac0
HttpSysServer => 7c080805af
Identity => 20f2b8737d
JavaScriptServices => 240dd82473
JsonPatch => 5613206ffe
KestrelHttpServer => 8688e36d7a
Localization => d84422f9b8
Logging => e5a3b1d9d5e83791571480a5d8c0b78a07a758f2
MetaPackages => 59eeb37a29
Microsoft.Data.Sqlite => 4eb7152a492604cc1c4b86f88c1c0e08075af740
MusicStore => 5421e033d8
Mvc => 672c794335
MvcPrecompilation => 996af7ccdc
Options => 2a6ce9da6a8395f98dae1f7c0a2bd8be327686e0
Proxy => 66729ba902ff0df0284bdd3b03870deda4a417ac
Razor => 83684abab4
ResponseCaching => 18db13f7e5
Routing => 1fc5947ff7
Scaffolding => 6bd24c1ffe5b5d0434a8ef31d9fb0cdffae607c0
Security => 569eef4f7d
ServerTests => e515bdb56d
Session => 54ad5760c7
SignalR => 4a34b879dd
StaticFiles => 1023468d0a
Templating => 51a8e4f995
WebHooks => 442ec18f9e986694b7268c0ca6b96bc92f278cae
WebSockets => 335135b148

[auto-updated: submodules]
2018-06-05 22:50:53 -07:00
.vscode
build List external dependency for Microsoft.NETCore.DotNetAppHost 2.1.0 2018-06-05 18:32:35 -07:00
docs
modules Updating submodule(s) 2018-06-05 22:50:53 -07:00
scripts Merge branch 'release/2.1' into dev 2018-06-04 13:05:46 -07:00
src Prepare the 2.0.9 patch 2018-05-23 11:18:16 -07:00
.appveyor.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules [2.1.x] Remove WebHooks and Proxy from servicing (#1189) 2018-05-30 15:16:22 -07:00
.travis.yml
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md Update README.md [ci skip] 2018-05-30 10:16:45 -07:00
build.cmd
build.sh
dockerbuild.sh
korebuild-lock.txt Updating BuildTools from 2.2.0-preview1-17066 to 2.2.0-preview1-17067 2018-05-31 20:11:54 -07:00
korebuild.json
run.cmd
run.ps1
run.sh
version.props Merge branch 'release/2.1' into dev 2018-06-04 13:05:46 -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
Channel name1 master 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)
(for glibc based OS - most common)
Archive (tar.gz) Archive (tar.gz)
Linux (x64 - musl)
(for musl based OS, such as Alpine Linux)
Archive (tar.gz) Archive (tar.gz)
Linux (arm32) Archive (tar.gz) Archive (tar.gz)
Debian/Ubuntu (x64) Installer (deb) Installer (deb)
RedHat/Fedora (x64) Installer (rpm) Installer (rpm)

1 For use with the -Channel argument in dotnet-install.ps1/sh.

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.