Go to file
ASP.NET CI 344066cbda Updating submodule(s)
AADIntegration => 08e6ad0c74
Antiforgery => 8a21907769
AzureIntegration => 92ae6790bb
BasicMiddleware => ab3e68c0c8
BrowserLink => c3d5d6a9e5d83e710880c320a92d427abe7592f2
Caching => 7f2df50e5327a7d2e6d0a3e2029db965e1df11f5
Common => 8c2059c52c7607474935047145cdb46448170a59
Configuration => 6d8c959a4f3231a2473cd04fe75f6d5fb7762364
CORS => 0f83c6d36a
DataProtection => 16958c67bb
DependencyInjection => b48ac9f88a08344267a05944ba323b4f5b1bfa5e
Diagnostics => 5f7cfe8303
DotNetTools => 9849740784
EntityFrameworkCore => e6fc160ecd4a307e826a436862eff940ce3d58d1
EventNotification => 9b077d31462456d57f2c2aa1639d750ad708cb68
FileSystem => 157eeaaa818fc234f8cde533993112341d4e4132
Hosting => 4a177d6b35
HtmlAbstractions => 05a569cea7
HttpAbstractions => c8b7ee9468
HttpClientFactory => d67e6d92fe4a6829bf157e3b0259dc06f98b1347
HttpSysServer => 3e8922a49c
Identity => 134c123ea7
IISIntegration => 238024d2f3
JavaScriptServices => 944e8d396d
JsonPatch => 58288a31a7
KestrelHttpServer => c7027784b6
Localization => f92640b5fb
Logging => f6b3b84e4f91f10be4be7d5f3e832d11d951b6e0
MetaPackages => fea1f8aa5b
Microsoft.Data.Sqlite => ec190793d058f49a345e58dff227997f79dbcbee
Mvc => 346e9b4f91
MvcPrecompilation => 1c70f054fa
Options => 555e7e3ace72c5862b1619857a07bd9c749e9622
Proxy => 0e5742a1aa120e842eac92784f72f2ff5bcff4f9
Razor => c59dcb9b4c
ResponseCaching => 0d302884ae
Routing => 89d5b714ba
Scaffolding => 6b4cfde721415107341831332f830a53132cfd0a
Security => 7921fa4c49
ServerTests => 4a9af6ebb7
Session => 9d03f4b1e5
SignalR => bafa68e9d5
StaticFiles => 2790696fc8
Templating => c1d15b7901
Testing => 42ea283c1c4a333b835140487afd1beb4ae03576
WebHooks => 6cab9cc0e271a29d3da068b58ad01ee477fcb1dd
WebSockets => 7a99d4fd00

[auto-updated: submodules]
2018-04-30 16:47:08 -07:00
.vscode
build Merge branch 'release/2.1' into dev 2018-04-30 16:13:02 -07:00
docs
modules Updating submodule(s) 2018-04-30 16:47:08 -07:00
scripts Fix Hub location 2018-04-25 11:46:45 -07:00
src
.appveyor.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules
.travis.yml
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md Remove alpine.3.6-x64 builds (#1121) 2018-04-30 15:13:22 -07:00
build.cmd
build.sh
dockerbuild.sh
korebuild-lock.txt Updating BuildTools from 2.2.0-preview1-17041 to 2.2.0-preview1-17042 2018-04-26 20:02:26 +00:00
korebuild.json
run.cmd
run.ps1
run.sh
version.props Set version to 2.1.0-rtm 2018-04-30 14:09:51 -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.