Go to file
ASP.NET CI ecf615db85 Updating submodule(s)
AADIntegration => bd08558a49
Antiforgery => 1727967f08
AuthSamples => 3ad862dc7a
AzureIntegration => 6c50820a49
BasicMiddleware => 0c84821f23
BrowserLink => f19181ae7a71e0d5e3fe8fe8e48edecbbccf91a6
Caching => 611f3f7a44058f1a192e171309dbd5f2c287ab52
Common => 0fc8c5e85799bd64baa3965f413a38dc89eea82e
Configuration => 00b0b3aa6aea102eb8fde94629889bc219ff9d51
CORS => 0c7cf1b06e
DataProtection => a5c86afe7d
DependencyInjection => 42208714de59bbedf25fca5c771b1a35eafed287
Diagnostics => 2f8eaa5ea4
DotNetTools => 3177be42f5
EntityFrameworkCore => 99702ba85e2ca173176a4dc87db698672bc40099
EventNotification => 659c6c23eb373d61447d0bedb830e672dc6971d6
FileSystem => dd16c9a4d366c7c73e1b66ec095008a41d7bdb9d
Hosting => 5fd60d68b6
HtmlAbstractions => 2d659e5382
HttpAbstractions => a6929fe02b
HttpClientFactory => b9949e718bc563f473ed5a510357df1a07e77fe2
HttpSysServer => e76c04eecc
Identity => 1bcd78c1d8
IISIntegration => 65d3787fc4
JavaScriptServices => 067298bead
JsonPatch => 2c1b6f9e8d
KestrelHttpServer => bcc9bce87b
Localization => 56bcb22639
Logging => 334983f3953d1f8acd81e9be28c0768064d310cf
MetaPackages => 68cecdbee0
Microsoft.Data.Sqlite => 5daab741f372e88af81b5f7cfd68486adcff347a
MusicStore => bb04931fe6
Mvc => c2fcfabdf3
MvcPrecompilation => ebd30270a4
Options => 7d0c98e54daad71dce99693ca61c93275cc02c3d
Proxy => fa78958d4c9cd83e3e9fdbf44f204c8fcf6982c8
Razor => f9a09372b7
ResponseCaching => 77c2d62a59
Routing => 0a44dcf4e3
Scaffolding => 20aede038470a77839bdeb1a52b4a767fe8a0170
Security => 866b0b66a4
ServerTests => eae90d6e7a
Session => 3c5a5e65cc
SignalR => b6c99069dd
StaticFiles => 91f4696ae6
Templating => 96adddcbca
WebSockets => 519851627c

[auto-updated: submodules]
2018-06-29 16:16:48 -07:00
.github
.vscode
build
docs
modules Updating submodule(s) 2018-06-29 16:16:48 -07:00
scripts
src
test/SharedFx.UnitTests
.appveyor.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules
.travis.yml
CONTRIBUTING.md
Directory.Build.props
Directory.Build.targets
LICENSE.txt
Microsoft.AspNetCore.sln
NuGet.config
README.md
build.cmd
build.sh
dockerbuild.sh
korebuild-lock.txt
korebuild.json
run.cmd
run.ps1
run.sh
version.props

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.2
release/2.1
Channel name1 master release/2.2 release/2.1
Windows (x64) Installer (exe)
Archive (zip)
Installer (exe)
Archive (zip)
Installer (exe)
Archive (zip)
Windows (x86) Installer (exe)
Archive (zip)
Installer (exe)
Archive (zip)
Installer (exe)
Archive (zip)
macOS (x64) Archive (tar.gz) Archive (tar.gz) Archive (tar.gz)
Linux (x64)
(for glibc based OS - most common)
Archive (tar.gz) Archive (tar.gz) Archive (tar.gz)
Linux (x64 - musl)
(for musl based OS, such as Alpine Linux)
Archive (tar.gz) Archive (tar.gz) Archive (tar.gz)
Linux (arm32) Archive (tar.gz) Archive (tar.gz) Archive (tar.gz)
Debian/Ubuntu (x64) Installer (deb) Installer (deb) Installer (deb)
RedHat/Fedora (x64) Installer (rpm) 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.