Go to file
ASP.NET CI 1f1e30fb13 Updating submodule(s)
AADIntegration => 1c7e5d489d
Antiforgery => f629774dd8
AuthSamples => fed20a5ddc
AzureIntegration => cfa66d7c8e
BasicMiddleware => 9500726ab2
BrowserLink => ba62ed26039d41859418356447eab41b650121b6
Caching => d229b4cc24713b5d79cd2602ac0d3ebfb3e749c4
Common => 23c72bb322cf9c9bd0172a1738293f8259089a02
Configuration => 55a0df253ae1fdf4065b6f54fa3e6bac07a3e196
CORS => 49a17c072a
DataProtection => 760efe303f
DependencyInjection => 3ef61a72ab3f0db0e3e85dc773fadf87766bb256
Diagnostics => 983d7836ab
DotNetTools => a9bdf718e5
EntityFrameworkCore => 3ba543c2a7b3630ab0cbd6139c0353328b1ba79b
EventNotification => a687f93d391fd2b33e4e7c0586abc370b5e39d81
FileSystem => 1842352b62e23d8cbfd4c30beb26c40aacf142cc
Hosting => 687a99438a
HtmlAbstractions => b4b9d5b0af
HttpAbstractions => 26b9bc06b2
HttpClientFactory => 2c3c359edeeb162f85ce49bfa8dd006c9b467a76
HttpSysServer => 9f6f5730fd
Identity => 3ae6a1d503
IISIntegration => 0665ab9045
JavaScriptServices => 9281cbaf72
JsonPatch => 06d1a535b3
KestrelHttpServer => 2bbd890357
Localization => 4c212511cf
Logging => bdd33cdcfd6345c01f820ae0726c49b2c3bc4939
MetaPackages => e692ca5a30
Microsoft.Data.Sqlite => 102db5d2e938981cbb742d4929b7700f50445d70
MusicStore => 6bb902e607
Mvc => 93d9c11778
MvcPrecompilation => a6f9e35e1e
Options => f0873965bd22ab3ec6891f5d23f172293cfa8abe
Proxy => 394cef4eb47b37b8c2e76498bce43d415d1a0122
Razor => 4b0a750692
ResponseCaching => df543a881e
Routing => e2892f82ed
Scaffolding => d1e0d1be2c36dd65673d595e0410363b0af100ee
Security => ef80c3beb7
ServerTests => 89506dfcf0
Session => 2c45aed77f
SignalR => c737eb32f2
StaticFiles => ee6c420c5c
Templating => 25661213f2
WebSockets => ecadd7b7b1

[auto-updated: submodules]
2018-08-12 12:38:49 -07:00
.github
.vscode
.vsts/builds Add PR validation on VSTS 2018-08-10 09:19:06 -07:00
build Merge branch 'release/2.1' into release/2.2 2018-08-10 09:49:37 -07:00
docs
modules Updating submodule(s) 2018-08-12 12:38:49 -07:00
scripts
src Merge branch 'release/2.1' into release/2.2 2018-08-10 09:49:37 -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 2.2.0-preview1-20180731.1 to 2.2.0-preview1-20180807.2 2018-08-07 13:51:13 -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 Prepare 2.1.4 patch 2018-08-07 21:24:01 +00: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 (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.