Go to file
ASP.NET CI c91d6aed73 Updating submodule(s)
AADIntegration => 566f38d7e8
Antiforgery => 8873a5387e
AuthSamples => b81183aa18
AzureIntegration => 03b42ccbe8
BasicMiddleware => e2ad5d8903
BrowserLink => 00534cc76d3b75bcbec00eaab54e41f00e55595d
Caching => 6a91378b71bc4d4eb65fe0a14caab0c2a36d3412
Common => fc86069372526a9e6cc2fb8e133206f3d4a6730a
Configuration => 3a005f10d83b3fa9ff92b017e808c4a9c03c9bfb
CORS => 36cfd12cfa
DataProtection => 19aa1bfc8b
DependencyInjection => a5ced3ecca40d4dc134905ad13745b74df0e8aa2
Diagnostics => d179d26469
DotNetTools => 90c00988bf
EntityFrameworkCore => 24e0fa850e28300b8fc73a6a082cf884c4f08fd2
EventNotification => 1e200d9cf2726625d93a76657a0094e9eb80ebd6
FileSystem => e52da39d61f086ebf1cb6afb0c603532a2963eab
Hosting => 86bfb3ba2c
HtmlAbstractions => 163441fd8d
HttpAbstractions => b141c676ca
HttpClientFactory => 178217a20e286f2cf5d06ffbb39f8eff639ad407
HttpSysServer => dd04840cc0
Identity => 5c315e3d1f
IISIntegration => 7d8599ed5c
JavaScriptServices => d742bea01e
JsonPatch => a487da3863
KestrelHttpServer => 041b3e9a2b
Localization => dc1592b63d
Logging => 77ca2f95a2ceb137c8e0bd90f7d02e6b615fa911
MetaPackages => 405c10499a
Microsoft.Data.Sqlite => 46ddbfb2bf6da6a7d2617b7f0d6f051dc541bd25
MusicStore => 113a0e7135
Mvc => 4aed4adf83
MvcPrecompilation => 31f2c88b9d
Options => 0c11054422dd1bf6619a05b704bb3bdbe3ca5b38
Proxy => b7c26d35980fdbb5286d6106a3dc28304abc2d03
Razor => 57fbd1c499
ResponseCaching => 3b73126137
Routing => 57ff9d0b48
Scaffolding => 79fb2146f0e9ca267687d5204d3c3722f9ff3eb9
Security => 238f461488
ServerTests => df96f13440
Session => e43c6177fc
SignalR => 422997a59a
StaticFiles => 768ae44788
Templating => 5273e4e7e8
WebHooks => b70430bbe9d5abc5595d5d52324ebc4fbdcd8596
WebSockets => 41f28dc07a

[auto-updated: submodules]
2018-07-02 13:26:58 -07:00
.github
.vscode
build
docs
modules Updating submodule(s) 2018-07-02 13:26:58 -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.