Go to file
ASP.NET CI a84590823e Updating submodule(s)
AADIntegration => 914aad91e0
Antiforgery => 17f9d4e5cf
AuthSamples => baa979f5ad
AzureIntegration => a828eeef40
BasicMiddleware => da786f9207
BrowserLink => 329eccff3a101a7ecc5ebdb5fc22502fcdff5ef6
Caching => cc56d1b81eec6486eb8a6640a5db2eceec712ddc
Common => e49ece1b9af359114161f44841c9dd2e21559129
Configuration => 54b23534a5bb0637f891339544963fc12a30ff9c
CORS => 9fd475d864
DataProtection => fcf39ffaaa
DependencyInjection => 28803d4521693385727c8b12b8d813f251719a37
Diagnostics => 9cc72f7af1
DotNetTools => 783090718f
EntityFrameworkCore => 9e83f8b445e58cc423f5ae6e9bfae716d5f01b9f
EventNotification => 7d647bf73b1133ff6141c89a77241d7144e35f07
FileSystem => d4232de92d836f78d5b450bca604964c0904e037
Hosting => efcb8d4a44
HtmlAbstractions => e9896d3be0
HttpAbstractions => cf771bcc62
HttpClientFactory => dd0b17a245a919609f3907670cbf039c441fab94
HttpSysServer => e4e1e7b7e7
Identity => 5ca87b7943
IISIntegration => a4635cf5e2
JavaScriptServices => 961619c5c9
JsonPatch => d442f8c498
KestrelHttpServer => b565a2e33c
Localization => feb9b29821
Logging => d0ed861ba114b5fc5cfcbeae0547b8a50ca4691c
MetaPackages => c52a4d7639
Microsoft.Data.Sqlite => 6135bcc0a2dc6053bf527227c9e36eb4021a720d
MusicStore => b8a282ad93
Mvc => b3087ab774
MvcPrecompilation => a112560f71
Options => ebf397911d6d02b8d959abffcdec5f5b8d1ca943
Proxy => a71409d3000604a6aef54e001b7260b1f2e422cb
Razor => 8bc4c7a15c
ResponseCaching => 20f72df62a
Routing => 04162f8b78
Scaffolding => 452e7b3a835eaec1be3774a4baa808b8b1633c31
Security => 02ddceac28
ServerTests => dfd2c26654
Session => e115e0ed97
SignalR => f89400cf12
StaticFiles => 100a9433e8

[auto-updated: submodules]
2018-04-29 12:40:59 -07:00
.vscode
build
docs
modules
scripts
src
.appveyor.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules
.travis.yml
CONTRIBUTING.md
LICENSE.txt
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.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.