Go to file
ASP.NET CI a937c45b7e Updating submodule(s)
BasicMiddleware => 354cb18d63
BrowserLink => 7311f401f9e8415849a5ee9eac3710559b1fdfd0
Caching => 2b52ea54d12add3dbad27099888f83605156ece1
Common => 4198cafd3ffe6dd3c55edb4f34a32ab17c2f46a8
Configuration => f07c5be6d0de33a7794c6544af8c7f8b055e7f95
CORS => 3607be1f72
DataProtection => fb948aea7d
DependencyInjection => bfbb9c56aceab53277f028f80cb5a326b9433bba
Diagnostics => afae173c75
DotNetTools => 08f7c2759f
EntityFrameworkCore => e0ca7ee2b78b9c521fb69d9dd30eff27dcf93f4a
EventNotification => b1f1e34de46ea32ac91b422d5027b9a642d6a08d
FileSystem => 6b002db6287ae64b71704a0f8b90c434846bfa7b
Hosting => b783d504ff
HtmlAbstractions => 5fd1e648e2
HttpAbstractions => e42808dc63
HttpClientFactory => 79c3cd50b99bd9aa8e06286edf3b3ae0d093afc3
HttpSysServer => 875af32219
Identity => ce9253d370
IISIntegration => 7a3c260394
JavaScriptServices => 67267eabf7
JsonPatch => 3aaf2726d9
KestrelHttpServer => 333586d735
Localization => 132b152fcf
Logging => 073a98266684d9c643a02ac3f0f30712a35a9914
MetaPackages => 35351b2677
Microsoft.Data.Sqlite => 9dbe334229c69265455b91c41e0d2a78889d3e39
MusicStore => 2811eadb14
Mvc => e603a35f23
MvcPrecompilation => befde0fe71
Options => 37e06280c7e1896567103d0123ca6f6cd51ca7e4
Proxy => ebf01099d868a086c4d2c7c1675b0840344ab5ff
Razor => c8c6a6f0ae
ResponseCaching => e65c4755f1
Routing => b08f0dd949
Scaffolding => 93a1c6ca9564f329b68376c57577f6a549ce994b
Security => 2e3a1071a8
ServerTests => a30faf1a30
Session => 389adac671
SignalR => 764d60bd95
StaticFiles => 33d8b10c53
Templating => b85aae2348
Testing => 286ade034e6e572d68c23c3d98de67525c25e3b4
WebHooks => 5a7ce76ab083efd18fddc926948cf0ba597f0a2e
WebSockets => 4db62c5786

[auto-updated: submodules]
2018-04-17 11:45:43 -07:00
.vscode
build Update artifacts.props 2018-04-13 17:58:19 -07:00
docs
modules Updating submodule(s) 2018-04-17 11:45:43 -07:00
scripts Use token instead of ssh 2018-04-13 13:54:19 -07:00
src
.appveyor.yml
.editorconfig
.gitattributes
.gitignore Update UpdateDependencies script 2018-04-11 12:49:04 -07:00
.gitmodules
.travis.yml
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md
build.cmd
build.sh
dockerbuild.sh
korebuild-lock.txt Updating BuildTools from 2.1.0-preview3-17018 to 2.1.0-preview3-17032 2018-04-16 10:41:17 -07:00
korebuild.json
run.cmd
run.ps1
run.sh
version.props 2.2.0 2018-04-17 09:48:24 -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 (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) Archive (tar.gz) Archive (tar.gz)
Linux (arm32) Archive (tar.gz) (not available yet)
Debian/Ubuntu (x64) Installer (deb) Installer (deb)
RedHat/Fedora (x64) Installer (rpm) Installer (rpm)
Alpine Linux 3.6 (x64) Archive (tar.gz) Archive (tar.gz)

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.