Go to file
ASP.NET CI 1a5d6ce85d Updating submodule(s)
AADIntegration => ef664ec473
Antiforgery => 3683d5201d
AuthSamples => 0c927c6bcc
AzureIntegration => 9ae2206d4b
BasicMiddleware => 7323781fa8
BrowserLink => cf725eea982df8b8a7556cf2ec36484f954682f4
Caching => e174b903cbb2d5e40f7f5191fa2859b7abe80d70
Common => bde27346a614fb1305ecb85040ed662292b88163
Configuration => 52e057533e3afe917e0f823704f0cb0fadd4823e
CORS => e2fe2182e8
DataProtection => a3f7b16464
DependencyInjection => 897b9836c0705dc212bfeb5914774e3dc210fefd
Diagnostics => 5f7102a469
DotNetTools => 2d70bb9021
EntityFrameworkCore => ac2c511d78c27ed093220d23df3b3ca2a721fbef
EventNotification => 4ffa480aaefe39e9da3f6321445c347fdf509581
FileSystem => d142e9e54c620427325325de7016939e2d35e517
Hosting => 5906740cdb
HtmlAbstractions => b4be87d7a3
HttpAbstractions => bcb7bcbb7a
HttpClientFactory => 07f52c9b58bd9d556f1df8e4861d7529e0776a57
HttpSysServer => b51d28d4f4
Identity => b4fc72c944
IISIntegration => dfe8c63bf4
JavaScriptServices => 0a1c83ab81
JsonPatch => 38c530f265
KestrelHttpServer => 65605647bb
Localization => 0e2db43448
Logging => a878b337da371549aa53e4a43a62a8fd1648e688
MetaPackages => e25ebbb5e0
Microsoft.Data.Sqlite => 9ac2530d2cef09ca2006dd68db3dcdebdaff1ce0
MusicStore => 76354f7b9b
Mvc => 330b74f0ab
MvcPrecompilation => ed4470d9aa
Options => d3f807c9dc83e608ab53bb08d90ddab747d9972f
Proxy => 0f0c2d236e2a0333e47cc56568055c047fc25a3f
Razor => 53eedb2e34
ResponseCaching => c6cdc4e39f
Routing => c81b6892dc
Scaffolding => 851d3a5c91f78d270a826ac7ffcacc455e5f49c4
Security => e031eff146
ServerTests => 3f5f5d40de
Session => a123bc15aa
SignalR => c1072ee740
StaticFiles => eade859ed8
Templating => e4b39750cb
WebHooks => 8738cad2d02742208749399cfd0a79e92ee2cdd8
WebSockets => f479af8c94

[auto-updated: submodules]
2018-05-20 19:56:10 +00:00
.vscode
build Update artifact 2018-05-18 11:03:35 -07:00
docs
modules Updating submodule(s) 2018-05-20 19:56:10 +00:00
scripts Merge branch 'release/2.1' into dev 2018-05-08 21:52:55 -07:00
src Let metapackages target netcoreapp2.2 2018-05-09 12:38:01 -07:00
.appveyor.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules Remove testing submodule (#1138) 2018-05-03 17:03:22 -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.2.0-preview1-17059 to 2.2.0-preview1-17060 2018-05-17 16:44:27 -07:00
korebuild.json
run.cmd
run.ps1
run.sh
version.props Merge branch 'release/2.1' into dev 2018-05-07 12:34:40 -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)
(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)

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.