Go to file
ASP.NET CI b0b44e7f77 Updating submodule(s)
AADIntegration => 5c9c3e24e4
Antiforgery => 08a2dada97
AuthSamples => bd7dd7b65d
AzureIntegration => 428fe94e13
BasicMiddleware => 8d4c1da8ef
BrowserLink => 89c214e8d112782db0d263636f0838abdd5f32a7
Caching => 5531cc88615e7f2f7cef73a4072498582e1165d6
Common => 7cc0c81e9457d9b6fa507f1ad51137a3caeb9cd6
Configuration => a29e82079ee60dbdd87e28ca6a1077338de2250c
CORS => 9d112a897d
DataProtection => 57bf1ebd7e
DependencyInjection => da6490b9c2235c0cee20fc0f109e18bb32ff6f6b
Diagnostics => db3e237144
DotNetTools => 736a09e889
EntityFrameworkCore => 4fe619031f639ce9a868ea2eb7f3a58e4a3a705c
EventNotification => 41283084ce31752881ec3b388a23870872786d7a
FileSystem => 8779a61e2b87267bca58bb76bb4316e793d818ee
Hosting => 5ca023fa1a
HtmlAbstractions => c4ce63be53
HttpAbstractions => 5c365618f3
HttpClientFactory => 43455b03b360b8b073912990d89abf6af79bfe12
HttpSysServer => ed799a460f
Identity => 301e43f6d4
IISIntegration => 4debd23b1b
JavaScriptServices => 0d1c99c1d1
JsonPatch => d45ef9d007
KestrelHttpServer => f4477cd5c3
Localization => a609535976
Logging => 284853b2800687ba111dfbf8a3e9b62d7a61c3e9
MetaPackages => 24025a21a8
Microsoft.Data.Sqlite => 1ec7e023ce0b48a442a000091dd02d8bfa040b4f
MusicStore => 1164897934
Mvc => b7064c576d
MvcPrecompilation => 4ecff8a2fa
Options => 0dd6211fb76d904994000da2453d33b89718a799
Proxy => 408459350f601628a71c7833b43e03a4e12d7eb1
Razor => 74c12b22d6
ResponseCaching => 58033c41f0
Routing => 33aa56abe5
Scaffolding => c83193ec8c8a4c9d4e32db5ed1f1d154e5924c9e
Security => 38004ce37a
ServerTests => de89de5980
Session => 6b5ea9c75e
SignalR => 43a563bf59
StaticFiles => 15b5e62d5a
Templating => 5dbc724998
WebHooks => 50f0b4166f157f888184a3fd35c040fd112aa3cb
WebSockets => 42d99933a5

[auto-updated: submodules]
2018-06-07 19:58:04 +00:00
.vscode
build Gather and merge sign requests from repo builds 2018-06-07 12:06:06 -07:00
docs Add pretty title 2018-02-26 16:53:56 -08:00
modules Updating submodule(s) 2018-06-07 19:58:04 +00: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 Update UpdateDependencies script 2018-04-11 12:49:04 -07:00
.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 Map properties DotNetRestoreSources => RestoreSources for metapackage builds (#955) 2018-03-13 12:23:18 -07:00
README.md Update README.md [ci skip] 2018-05-30 10:16:45 -07:00
build.cmd
build.sh
dockerbuild.sh Update Templating submodule 2018-03-21 08:40:00 -07:00
korebuild-lock.txt Gather and merge sign requests from repo builds 2018-06-07 12:06:06 -07:00
korebuild.json Branching for release/2.1 2018-03-16 12:05:11 -07:00
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.