Go to file
ASP.NET CI fc444d7548 Updating submodule(s)
AADIntegration => 8610901960
Antiforgery => dfea4213e7
AuthSamples => 3644624307
AzureIntegration => 0397209bb9
BasicMiddleware => 675d624144
BrowserLink => 92cfa5bf14e15ab04c0178e6dae476ed08173dc5
Caching => 19fc0c0209c3b611d3dd2d50ec40d6bd44300d1d
Common => 70f2a2595f8af9f050905cccc6b19334fd593ba2
Configuration => 5831d96651c52a0642685961a784f006764099b1
CORS => ca92227ac3
DataProtection => 19629672ca
DependencyInjection => 6a127917905805937e6d5ddb3ed91b0f365fd543
Diagnostics => 769da62e40
DotNetTools => 5b5c587943
EntityFrameworkCore => e1b15ad76b5e18fc224e50f5a227854c7d26a81f
EventNotification => 5fe7039ebb411bfee15fac7aefaffd514bdcb73a
FileSystem => 28920c37d228f392ccb89c66c2adb667502eda39
Hosting => 97c9510a95
HtmlAbstractions => e60d98aa76
HttpAbstractions => d5041b9a33
HttpClientFactory => 719b29d8e39698338f6c968a56306d2763f05822
HttpSysServer => 7f14fd15e3
Identity => 6bf092a460
IISIntegration => c291d80c19
JavaScriptServices => b1d04c99c9
JsonPatch => 37d8328019
KestrelHttpServer => f7d459326c
Localization => 6fcfe10f5c
Logging => 4141ae624c713ffde67dd05f5fdeeb9797e8ebab
MetaPackages => 622bdeec84
Microsoft.Data.Sqlite => e63f9482d2d84dd906d7057b82af593f62565506
MusicStore => 3088bf04fb
Mvc => da556a41b7
MvcPrecompilation => 5e68c00b9e
Options => 406a331bd3dd198e6902e11ba2d42d8809441b2f
Proxy => 4bd20c7764335ed2b0b34708f7af583d585f961e
Razor => d4c652a7d5
ResponseCaching => 28ef6fdd26
Routing => 11ff2b27de
Scaffolding => fcaeaef22a134069202dea5893e0330f8d96287c
Security => d0d7278274
ServerTests => 8f9a540902
Session => 2dec6a281c
SignalR => e8cc38f887
StaticFiles => 8a9db9ace3
Templating => ddd01c229c
WebHooks => 9cc2c2fc04df5c86af7073b7fd32cf817a887c12
WebSockets => e2dd797a99

[auto-updated: submodules]
2018-07-03 09:37:55 -07:00
.github
.vscode
build
docs
modules Updating submodule(s) 2018-07-03 09:37:55 -07:00
scripts Change default branch to master 2018-07-02 11:50:02 -07:00
src
test/SharedFx.UnitTests
.appveyor.yml Change default branch to master 2018-07-02 11:50:02 -07:00
.editorconfig
.gitattributes
.gitignore
.gitmodules Change default branch to master 2018-07-02 11:50:02 -07:00
.travis.yml Change default branch to master 2018-07-02 11:50:02 -07:00
CONTRIBUTING.md
Directory.Build.props
Directory.Build.targets
LICENSE.txt
Microsoft.AspNetCore.sln
NuGet.config
README.md Add release/2.2 links to README [ci skip] 2018-07-02 12:59:24 -07:00
build.cmd
build.sh
dockerbuild.sh
korebuild-lock.txt
korebuild.json Change default branch to master 2018-07-02 11:50:02 -07:00
run.cmd
run.ps1 Change default branch to master 2018-07-02 11:50:02 -07:00
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)
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.