Go to file
ASP.NET CI dc26bad587 Updating submodule(s)
AADIntegration => 4342e5cae2
Antiforgery => 60f7d1ecf5
AuthSamples => 7a258b6857
AzureIntegration => 3fd1d90c65
BasicMiddleware => 82f6cd224a
BrowserLink => dfd4e839d1c483220ade5ef181c2392c3f956daf
Caching => 93d7d6f9409548594a806dc203acf8f9ec80ccba
Common => 8ddc5722596937430ddb6b2aec2fcea06723d5a7
Configuration => b1d43cf8b49433054e33f4b6ab66cdffb6fa645e
CORS => 054943b33e
DataProtection => 8851048872
DependencyInjection => 22b6857cd9892a3d3478ff7a77bafdf6f0efefd3
Diagnostics => 98785fb2f5
DotNetTools => e559cca71e
EntityFrameworkCore => 84b75d5366769dba75e4d3612c9f142d7217d27d
EventNotification => cd87076cc755ce4ecff94bffb1ee90c23079020b
FileSystem => 7fa21ddea48ecd6d263d766772fa594504196ee0
Hosting => 982508e863
HtmlAbstractions => dd2eaa1ed3
HttpAbstractions => 95a44cda4b
HttpClientFactory => aca692674d5b63824a8c711d1d65778c2ff0d50e
HttpSysServer => 280bd9e9a4
Identity => 534e20b49e
IISIntegration => cfde418a3c
JavaScriptServices => 8c84e35392
JsonPatch => 54e6ffce34
KestrelHttpServer => 8d0d46f10d
Localization => 8815ba1b92
Logging => 73a71506bd81a71826d5778ac4292d6543e03278
MetaPackages => 4e1b907743
Microsoft.Data.Sqlite => e1b3a1dbc005b15e073bfc351a49ae92f85374ed
MusicStore => 715741c007
Mvc => 63c370ddf3
MvcPrecompilation => 7f56c68402
Options => 393e0356850d031ca0aa44fa8cf2716b55248b31
Proxy => 90d90c12d61580be1738a78fde0b03c0d25338a0
Razor => d16988542a
ResponseCaching => 4cbf2f4849
Routing => 200d48879c
Scaffolding => 31ef82fd7252efcca8811bb5e41cd58b9b49a493
Security => 4dbcfa5e50
ServerTests => 910ed9b684
Session => 4da224c5f1
SignalR => 4c1c494748
StaticFiles => 66573b187d
Templating => 732200b23a
Testing => ce80e2d5762376aef9b33b4f96073f2e416b05df
WebHooks => a57cf4693e2f27b588cf06f113c5cc848e4d7de8
WebSockets => b3356b90b2

[auto-updated: submodules]
2018-05-04 15:21:26 +00:00
.vscode
build Updating external dependencies to latest prodcon build 2018-05-03 19:27:59 -07:00
docs
modules Updating submodule(s) 2018-05-04 15:21:26 +00:00
scripts Backport fixes to maestro-bot scripts 2018-05-03 19:25:11 -07:00
src Add property to allow the SDK to disable shared framework trimming (#1130) 2018-05-02 08:49:03 -07:00
.appveyor.yml
.editorconfig
.gitattributes
.gitignore Update UpdateDependencies script 2018-04-11 12:49:04 -07:00
.gitmodules Adapt dev to release/2.1 2018-04-17 12:24:03 -07:00
.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 Update Templating submodule 2018-03-21 08:40:00 -07:00
korebuild-lock.txt Updating BuildTools from 2.1.0-rtm-15782 to 2.1.0-rtm-15783 2018-05-03 03:07:24 -07:00
korebuild.json Adapt dev to release/2.1 2018-04-17 12:24:03 -07:00
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.