Go to file
ASP.NET CI cb84bdcb80 Updating submodule(s)
AADIntegration => 268e97c424
Antiforgery => 07de046022
AuthSamples => e207b980ba
AzureIntegration => eb649cf65f
BasicMiddleware => 5975eb78a0
BrowserLink => 1dcc1093f9723d7e53af51f0cfd5f58b6a444bf7
Caching => 719ba5af2f87886010bcb4ae95fa515587e257a3
Common => 0ae17b8a22fd0daad442404ca43bc149a18059a0
Configuration => 801e27052fd9f26f4e5aa4afea5a7b1c6894c650
CORS => b65803a891
DataProtection => 4303def2ff
DependencyInjection => 9213e77ed62b2ad82ff3adb0b166fbc0f4921940
Diagnostics => d8ecc6c967
DotNetTools => fed623db5c
EntityFrameworkCore => 68b9ad18cbee1df23724ef891dd005def38e484e
EventNotification => 9ed57ca6281a00305a68daf5c7c96d9b25f51164
FileSystem => 0d73f9a335ab860732cde6b61749d26c6d98392c
Hosting => ec51afd9d0
HtmlAbstractions => fe4ff1a2c4
HttpAbstractions => b3fc9aa4a5
HttpClientFactory => 777e9895e60bbd32c1237b89597e812a96e8ed00
HttpSysServer => 4f30967f80
Identity => 4f3d1f4f75
IISIntegration => e999010122
JavaScriptServices => b616db4918
JsonPatch => 75126c0726
KestrelHttpServer => 40d1b75272
Localization => f97bbd9a67
Logging => a2d49bd92d29c5e356f30916ae46a38ca65d5cd1
MetaPackages => a797456a0d
Microsoft.Data.Sqlite => 73801e521369cb82f34cc439c197c200afc33c41
MusicStore => 8f0fab5916
Mvc => 839223756b
MvcPrecompilation => 3bc13cdfbf
Options => 862ee3bb1e99e2f19b3e146e423789bbc9e80aa2
Proxy => 9ad1d6c2d14898dbbe7df0aaa2df90f4814ad5e8
Razor => 41324bd37a
ResponseCaching => 927c3f93fe
Routing => df857a0369
Scaffolding => 0bf2ab5d6ba73c1a5c171477535a78174f014c53
Security => 0d4438d4c9
ServerTests => 6622801f53
Session => 504f6eb9a4
SignalR => 8df8445cff
StaticFiles => 2972814b22
Templating => ec6cb2a646
WebHooks => dd54e5ccac71748bfef5bf502d68ccc37b3f5721
WebSockets => 89536c2081

[auto-updated: submodules]
2018-06-03 19:38:23 +00:00
.vscode
build Merge branch 'release/2.1' into dev 2018-05-31 17:56:48 -07:00
docs
modules Updating submodule(s) 2018-06-03 19:38:23 +00:00
scripts Prepare the 2.1.1 patch 2018-05-23 15:38:16 -07:00
src Let metapackages target netcoreapp2.2 2018-05-09 12:38:01 -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 Prepare the 2.1.1 patch 2018-05-23 15:38:16 -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.