Go to file
ASP.NET CI 2fdb796715 Updating submodule(s)
Antiforgery => c2e4c72a32
AuthSamples => 03b4a625c3
BasicMiddleware => 901efb04a9
BrowserLink => 904fc27184ca36b2ea1028767fd34d2b0a307111
Caching => aa60e678e0255b9d77bd20af2877a3edf69e8b33
Common => 8010d565d3ff22ceacebb38099de62a74874daea
Configuration => 54bc7d8aef9afc03e9e8cb9e34fae387b60abd3c
CORS => b7e4884b86
DataProtection => 2ca2677388
DependencyInjection => e76577449b92a9dc915ec2c4495df1e158cd4692
DotNetTools => 9b7f097870
EntityFrameworkCore => a4a414432b20ae68ce53e4b981ecf9e718f98731
EventNotification => 5a7de63da188d45782d4b1d500bdf33748a7a7fb
FileSystem => 61ac940d1b30aca3f93fcf5a693ca9b4aee55f42
Hosting => 04d6e71e7f
HtmlAbstractions => f4b98641d2
HttpAbstractions => c08f320967
HttpClientFactory => 500ebbb2442d4ee2a0e651335e797d76b73c06f5
HttpSysServer => 360be36926
IISIntegration => 36f657deb7
JsonPatch => e3a21b2a92
KestrelHttpServer => 5ec7bacdfe
Localization => c69da9db06
Logging => 14c12fdfd0c5f2ce9bf6557d7d915c4fa143dc51
Microsoft.Data.Sqlite => e6d79ed5dec48e4788e0897ef23b8f1e35de6d4a
MusicStore => 51406d3672
Mvc => 984cd46c4d
MvcPrecompilation => 0f12047271
Options => 432017ceb8690b43f8616194f3079295f4dafee0
Razor => cdbcfb7a05
ResponseCaching => ca86f693f0
Routing => 7aeda0427c
Scaffolding => fcf4d2eee310d9ef3067fa274e45952d7bb91c71
Security => e538375c44
ServerTests => 9db1fc8e55
Session => 3b0566d8f3
SignalR => c976d0aa6e
Templating => 52a9e7a54d
Testing => d7056f3aaeeaef3e10ece062d04eefdcd9f97719

[auto-updated: submodules]
2018-05-30 11:38:53 -07:00
.vscode
build Fix version coherence check to filter out non-package artifacts 2018-05-30 11:34:03 -07:00
docs Add pretty title 2018-02-26 16:53:56 -08:00
modules Updating submodule(s) 2018-05-30 11:38:53 -07:00
scripts Prepare the 2.1.1 patch 2018-05-23 15:38:16 -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 Update KestrelHttpServer submodule 2018-04-23 17:21:36 -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 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-15789 to 2.1.1-rtm-15790 2018-05-23 16:30:01 -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 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
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.