Go to file
ASP.NET CI 41bd03ceb5 Updating submodule(s)
AADIntegration => fb630c8ba2
Antiforgery => 164c6cdfcb
AuthSamples => bbded609b2
AzureIntegration => dd3eda2fe4
BasicMiddleware => 68a14eecf1
BrowserLink => 9079e191d53375338e091b6deb4a8943be794e56
Caching => 0a729862e2c34ffbf27d888b3b6f1e63dbf4b539
Common => d3cfd4e0c963353631a6d461fe19fabebd3c76e0
Configuration => e696d10fef92bb66452a8908e191427b8e62b38e
CORS => 32ad46006e
DataProtection => 678fe889c3
DependencyInjection => 9732ad87e590401a8005c378d94723cfa522c11c
Diagnostics => 7f463b2793
DotNetTools => b882d97277
EntityFrameworkCore => e300fdfe4ac314cc9e65520a15b9b7609a6c6a21
EventNotification => a4d3ba190da5ce4a13230307029f051196036dc7
FileSystem => 9577475b088299cf4c88e5c3ecae8a6876ab14d2
Hosting => 2a98db6a73
HtmlAbstractions => fdf97c547e
HttpAbstractions => 6d6b7785d2
HttpClientFactory => eea2ba82e83b7a7825a64081ba8b86a29588e577
HttpSysServer => b44f8f61d1
Identity => d92c2732c5
IISIntegration => 2da2482671
JavaScriptServices => cf659b3fda
JsonPatch => a3ff5cfef7
KestrelHttpServer => 126122fa0e
Localization => a00708da34
Logging => 588211aa2d8f49f07a0db688ec89d0462468fe68
MetaPackages => a6caaec7b4
Microsoft.Data.Sqlite => 03f7693b407a0192dedad62cc19b1d5858b278bb
MusicStore => f6470322bc
Mvc => f15457c026
MvcPrecompilation => 3cd73aa2fa
Options => e459e307bc31044e01c0130861947c91f5504b53
Proxy => d4eac8015299f6738fd060e631fd73f99372c84a
Razor => 31a54fea1b
ResponseCaching => 79e2664f7c
Routing => 25292fb473
Scaffolding => ff7ca1096ffe134cad4d2dbeead675a16139a1a4
Security => d8821d7eb1
ServerTests => 2cb10ef8f2
Session => f268f3ac3d
SignalR => d78156a362
StaticFiles => cfbf87ccb7
Templating => 8084b4f28d
WebHooks => e889d84a31f5a0523dfdb0739cf41e522794fedb
WebSockets => d2b5a2c3dc

[auto-updated: submodules]
2018-06-25 11:38:46 -07:00
.vscode
build Support packages both built in Universe and used as external dependencies 2018-06-23 00:34:33 -07:00
docs
modules Updating submodule(s) 2018-06-25 11:38:46 -07:00
scripts
src Add unit tests for the shared framework 2018-06-08 10:33:31 -07:00
test/SharedFx.UnitTests Add unit tests for the shared framework 2018-06-08 10:33:31 -07:00
.appveyor.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules
.travis.yml
CONTRIBUTING.md
Directory.Build.props Add unit tests for the shared framework 2018-06-08 10:33:31 -07:00
Directory.Build.targets Add unit tests for the shared framework 2018-06-08 10:33:31 -07:00
LICENSE.txt
Microsoft.AspNetCore.sln Add unit tests for the shared framework 2018-06-08 10:33:31 -07:00
NuGet.config
README.md
build.cmd
build.sh
dockerbuild.sh Fix tests on linux-musl-x64 2018-06-08 16:58:48 -07:00
korebuild-lock.txt Updating BuildTools from 2.2.0-preview1-17089 to 2.2.0-preview1-17090 2018-06-13 21:00:29 +00:00
korebuild.json
run.cmd
run.ps1 Fix tests on linux-musl-x64 2018-06-08 16:58:48 -07:00
run.sh Fix tests on linux-musl-x64 2018-06-08 16:58:48 -07:00
version.props Add unit tests for the shared framework 2018-06-08 10:33:31 -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
Channel name1 master 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)
(for glibc based OS - most common)
Archive (tar.gz) Archive (tar.gz)
Linux (x64 - musl)
(for musl based OS, such as Alpine Linux)
Archive (tar.gz) Archive (tar.gz)
Linux (arm32) Archive (tar.gz) Archive (tar.gz)
Debian/Ubuntu (x64) Installer (deb) Installer (deb)
RedHat/Fedora (x64) 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.