Go to file
ASP.NET CI 974163579b Updating submodule(s)
AADIntegration => 70401e8d85
Antiforgery => 9035c4efc8
AuthSamples => a15c26e984
AzureIntegration => 2b55fa62a4
BasicMiddleware => 15d5545d59
BrowserLink => 477a0a8dd9d2797bb2e69e792c0183487732c6b1
Caching => f1a8427caad5006acaef23553478ad305fbb86f0
Common => b0bbd93316d5b55a1fbbb212d0580743b6e184c8
Configuration => cc95824f9f8400bb2f2e4dc528fe5b808fecef5c
CORS => 3fc1b8ff76
DataProtection => 58ff54cec7
DependencyInjection => 43872224de8104c4d9d6037c7057464f32da70b7
Diagnostics => bd87f9bb5b
DotNetTools => 89dedd068c
EntityFrameworkCore => fd4f37e41893327340e8cc077a8ecdc1b6d7841c
EventNotification => 1a868e34c8bf41b86ffb729b27eb157c2a4337fb
FileSystem => 944be1172137470f0fb95ed87941393d0e8b8809
Hosting => c37c50964d
HtmlAbstractions => 999f072417
HttpAbstractions => 02f55e181b
HttpClientFactory => 2664188ffdea81a9cc31eb178f398a5456d76d64
HttpSysServer => e9c0d285b5
Identity => 1438a1be5f
IISIntegration => 9173ec240f
JavaScriptServices => cd009006c8
JsonPatch => 6e7a133d77
KestrelHttpServer => 8c47aed61f
Localization => 61fdcfef1e
Logging => 35244bec765330d3cb3c0414493a15a0c02d9ac1
MetaPackages => 5605eabee6
Microsoft.Data.Sqlite => f05359fe240cc704fa8069844180a2f4558d8f8c
MusicStore => d7a28b16d8
Mvc => 5eff5a43fb
Options => dd99cb3904d39dafff3298ea7c0c84d9434d25f7
Proxy => 79fbdb1619dce33db2eb22a38038e2b4a4ff6b5f
Razor => 3bcfa1c87a
ResponseCaching => 786688c922
Routing => fc3cfac276
Scaffolding => 7c2ebceef70f49f50b544ad358f8cf8f0c0282b4
Security => 5cd5de3bb8
ServerTests => a40a4c7cda
Session => 130ff3c12c
SignalR => 2252c0552d
StaticFiles => 565d086a70
Templating => 6d25b826a2
WebHooks => 555ba9e9ea6ca62b6493ccd901f74e264929651c
WebSockets => 64e736173c

[auto-updated: submodules]
2018-09-09 19:40:39 +00:00
.github
.vscode
.vsts/builds Merge branch 'release/2.2' 2018-09-05 17:25:17 -07:00
build Upgrade to .NET Core 3.0.0-preview1-26907-05 2018-09-07 11:20:59 -07:00
docs
eng Set the signing cert for .msi files to the 'Microsoft' certificate 2018-09-06 16:30:03 -07:00
modules Updating submodule(s) 2018-09-09 19:40:39 +00:00
scripts Merge branch 'release/2.2' 2018-08-31 16:58:52 -07:00
src Merge branch 'release/2.2' 2018-09-06 23:05:08 -07:00
test Merge branch 'release/2.2' 2018-08-31 16:58:52 -07:00
.editorconfig
.gitattributes
.gitignore
.gitmodules Stop building MvcPrecompilation package 2018-08-30 11:23:45 -07:00
CONTRIBUTING.md
Directory.Build.props
Directory.Build.targets
LICENSE.txt
Microsoft.AspNetCore.sln
NuGet.config
README.md Rename to Cli.FunctionalTests 2018-08-29 16:15:53 -07:00
build.cmd
build.sh
dockerbuild.sh
korebuild-lock.txt Updating BuildTools from 3.0.0-alpha1-20180907.5 to 3.0.0-alpha1-20180907.9 2018-09-07 11:25:33 -07:00
korebuild.json
run.cmd
run.ps1
run.sh
version.props Update branding to 2.2.0-preview3 2018-09-05 16:37:32 -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 (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.