Go to file
ASP.NET CI 7cffce2f2a Updating submodule(s)
AADIntegration => 02fe9137aa
Antiforgery => 1c8f90c4ab
AuthSamples => 67e418bbd1
AzureIntegration => 033025b505
BasicMiddleware => 1203bcf63d
BrowserLink => 9bcd585848009088551999b35a807318c28cf7d0
Caching => 16b5a45e632ef7b1df0c6d6f808f9c7eee5b275c
Common => 44888f3bdc9c37bfcdc229e762df1ffcf4a08b68
Configuration => 9aa0be9d4f115e381060519e7813ca8ba7896810
CORS => fb02fb3f1b
DataProtection => b4b42f8f3b
DependencyInjection => 2d6553302a0fe99b1321b1b12031d86bb17257ab
Diagnostics => 3c5e8fb78e
DotNetTools => 854556408a
EntityFrameworkCore => b0e818c80890dcd3f2fed4acf349411d375988d3
EventNotification => 80517216d6c33f77a8c99ed1ecd684c519d66689
FileSystem => 74ff973aa80020a71165a748367e2cdac025e6bf
Hosting => f59ab6a8ed
HtmlAbstractions => c7aaa655db
HttpAbstractions => bfa183747f
HttpClientFactory => 3cf48f0569ad01f7618604a1c86baf70b9693cfe
HttpSysServer => 7e2debe46b
Identity => 4f71b90d67
IISIntegration => cd645faf69
JavaScriptServices => 1af86b7ba8
JsonPatch => f3fc41e294
KestrelHttpServer => bd845eb145
Localization => f3065fa71e
Logging => c9a97e95004f27abff8012bca1ece1f2258eab90
MetaPackages => 57128d2581
Microsoft.Data.Sqlite => 4f967279fb97c7fbcbd5217432a961c0c7a25c70
MusicStore => 33e819a91c
Mvc => 6bd94095f7
MvcPrecompilation => f753e1196c
Options => 48db743291dbe639dc56da00f3f0f9e527d2d76d
Proxy => 9891ec8ffc3775eff6c59be6a22ed0b29aa4f42c
Razor => 7450a3a0fb
ResponseCaching => 9a69edf303
Routing => 8ccb8879cd
Scaffolding => a66940b4117b39c2340885ca52a5712925a6d2a8
Security => f084067d6a
ServerTests => 43a01112d4
Session => 6e43cb9789
SignalR => 3b6e728b40
StaticFiles => ac9984474b
Templating => d7b897ad75
WebHooks => 6c3860ceb049b9bb9ddbd4e02787464dc0580dd2
WebSockets => 7aa72d5e92

[auto-updated: submodules]
2018-08-12 20:24:55 +00:00
.github
.vscode
.vsts/builds Add PR validation on VSTS 2018-08-10 09:19:06 -07:00
build Update package versions that are important to new completion APIs. 2018-08-10 11:37:28 -07:00
docs
modules Updating submodule(s) 2018-08-12 20:24:55 +00:00
scripts
src Merge branch 'release/2.2' 2018-08-10 10:13:35 -07:00
test/SharedFx.UnitTests
.editorconfig
.gitattributes
.gitignore
.gitmodules
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 Updating BuildTools from 3.0.0-alpha1-20180807.3 to 3.0.0-alpha1-20180810.1 2018-08-10 09:24:54 -07:00
korebuild.json
run.cmd
run.ps1 Add PR validation on VSTS 2018-08-10 09:19:06 -07:00
run.sh Add PR validation on VSTS 2018-08-10 09:19:06 -07:00
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 (master 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.