Go to file
ASP.NET CI 3a95662f52 Updating submodule(s)
AADIntegration => be1337c73e
Antiforgery => 2843f8cfc5
AuthSamples => 41ad654a26
AzureIntegration => 0cb45afdaa
BasicMiddleware => f9619367fc
BrowserLink => ee68c6ae8cd2fbd0c189bcb2099d9a10257c75ac
Caching => 08266190ce3a1c6821bcd08c433959ddd3c18300
Common => 3bd7db49aecd435bf958d2952f4cd3f91ed13115
Configuration => 645b8237533e5152f19798a55d1ebf7f927b32ee
CORS => 8ee8c84288
DataProtection => ba3cf559bd
DependencyInjection => aaab2f53c44a066611ec90a7514f6dcb26fbbbf1
Diagnostics => 89b25723db
DotNetTools => 3385cfea1b
EntityFrameworkCore => 818a210c444ef5d886460cbd9c4117620939f1f2
EventNotification => 46ff2a47a41fd265669f3cfcca2d4742266eca69
FileSystem => 2ce0323e3df2f94352c6f28c895a6a617827b49e
Hosting => 7644204569
HtmlAbstractions => 6c2432e544
HttpAbstractions => e7055a11ae
HttpClientFactory => 3fc98d44ca3e35508903bcf6729c047b5418b556
HttpSysServer => 6ce8b74ea4
Identity => 9b2a7d35f4
IISIntegration => 03c5357ee2
JavaScriptServices => 8ddacb8b73
JsonPatch => 40d5c7f839
KestrelHttpServer => 9662e2bd01
Localization => 979c8f01e0
Logging => b2c4d45da6603279aad4064d32d1c1daef1749e7
MetaPackages => 750fd873d1
Microsoft.Data.Sqlite => 466a4802116ae581a9a6947c03889e4d59836a6f
MusicStore => 23d7955517
Mvc => e781cd38cf
MvcPrecompilation => f08b4a7b0b
Options => 22d2d52a3047706537064124283fd4159c92033a
Proxy => 10420007ce449eb33d76cd8452cd681018c502df
Razor => dc997821cc
ResponseCaching => 532af71577
Routing => f4e57be575
Scaffolding => b0eec6c5a823e7f2d9a8c9f91105b315e832b1d8
Security => 30493e2fd6
ServerTests => da33bd257a
Session => a9f6f3bb3d
SignalR => 31debcbf9f
StaticFiles => bf0e4f8fb5
Templating => 718989b820
Testing => 807e41b008c9797c737649964f63c08d40063ce4
WebHooks => eecaac30c56c49db22124667fa28170d34df577e
WebSockets => 07dddce092

[auto-updated: submodules]
2018-04-17 14:06:54 -07:00
.vscode
build
docs
modules Updating submodule(s) 2018-04-17 14:06:54 -07:00
scripts Fix script target 2018-04-17 12:26:08 -07:00
src
.appveyor.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules Adapt dev to release/2.1 2018-04-17 12:24:03 -07:00
.travis.yml
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md
build.cmd
build.sh
dockerbuild.sh
korebuild-lock.txt Adapt dev to release/2.1 2018-04-17 12:24:03 -07:00
korebuild.json Adapt dev to release/2.1 2018-04-17 12:24:03 -07:00
run.cmd
run.ps1
run.sh
version.props Adapt dev to release/2.1 2018-04-17 12:24:03 -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.