Go to file
ASP.NET CI b252069dad Updating submodule(s)
AADIntegration => 51fc26c7a1
Antiforgery => 2b2ead013f
AuthSamples => 234abf90d3
AzureIntegration => 0e719f8c3f
BasicMiddleware => 5119f96a75
BrowserLink => 3619b488380c14b9f29797359660c0002e2c3a4c
Caching => 9380a26c408d08015b9062db11f3ba3782b66418
Common => acc0cb94db1d57029413e5f6fea7ae35422ba517
Configuration => 221ee4c4c59b2fa62cd835a7d69c4790dc9a3cff
CORS => c68c5d3029
DataProtection => a9f42e182e
DependencyInjection => 8484218a01de69fa472f9bb15f59c99c9ff8df95
Diagnostics => dd46e7e46b
DotNetTools => 46aefb86dd
EntityFrameworkCore => d73cf3e191e4e7f0e5bfc2317b37c1ce9d1172d7
EventNotification => 7e6f3a6ce1ce0c814d28a604c98da3e4b8754b4b
FileSystem => f4e233a1eedcbd009e0ecc7b95f251546d7859f3
Hosting => f682c6ab20
HtmlAbstractions => fa8ba9d220
HttpAbstractions => 2422138ab4
HttpClientFactory => e7634ba2b60f114a0b3287272a059870c82c5978
HttpSysServer => ff9a93f160
Identity => 9b385180a9
IISIntegration => a8f61f7d7d
JavaScriptServices => 78a8bbf783
JsonPatch => a7056ce4e6
KestrelHttpServer => 06a74ae32d
Localization => db7b06e133
Logging => 48d4774796462e9511d9ba13447fe94d95e31526
MetaPackages => 4738b4c26a
Microsoft.Data.Sqlite => 69abab3735df35b9fcb295f2da60908c09b46ad0
MusicStore => d0a999801e
Mvc => bd2754160e
Options => f015cec7e55a223cbf4cb7e0cc002041782bb923
Proxy => 10ca6a434a455a4294842c875b96af173a8ca385
Razor => 3f916e5f28
ResponseCaching => d7700469c7
Routing => cd64eb7d6b
Scaffolding => 87626107c62779aa7ecc176013ca1321a9134d9e
Security => 9c7f0b0b0d
ServerTests => 050a19b6a0
Session => c0396f7ff4
SignalR => 696a07d9e3
StaticFiles => 0b495bd0eb
Templating => 80b1132c64
WebHooks => df76648345f46ecab4d2c7c83ee57d184dab335b
WebSockets => 4a8f47c2ae

[auto-updated: submodules]
2018-09-24 10:09:55 -07:00
.github
.vscode
.vsts/builds
build Pin System.Memory to 4.5.0 2018-09-20 10:30:57 -07:00
docs
eng
modules Updating submodule(s) 2018-09-24 10:09:55 -07:00
scripts
src
test
.editorconfig
.gitattributes
.gitignore
.gitmodules
CONTRIBUTING.md
Directory.Build.props
Directory.Build.targets
LICENSE.txt
Microsoft.AspNetCore.sln
NuGet.config
README.md add arm64 sharedfx builds 2018-09-19 18:30:23 -07:00
build.cmd
build.sh
dockerbuild.sh
korebuild-lock.txt Updating BuildTools from 3.0.0-alpha1-20180911.2 to 3.0.0-alpha1-20180919.1 2018-09-20 10:54:33 -07:00
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 (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)
Linux (arm64) 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.