Go to file
ASP.NET CI 9de631457f Updating submodule(s)
AADIntegration => b52327f147
Antiforgery => 1ccf788e03
AuthSamples => 7af0235fb0
AzureIntegration => abcd5e5272
BasicMiddleware => 30600fc802
BrowserLink => 34c1b262020795d7fcc93dd2380520305820f353
Caching => b7fa00bc3fc8c76947af3d4ec83d4b86e7257e84
Common => c73826d74fdb227764a814fb7a08119e3d22d4ba
Configuration => 8d4225eedbe608cdd37e514b8b5f2a95f2ff2efa
CORS => 83d54b2476
DataProtection => 0991bd2d7d
DependencyInjection => 943ffa1187399ad4c2af0d23641af9804eacd4e6
Diagnostics => 7b1517f5d0
DotNetTools => 0c471a5b13
EntityFrameworkCore => 3bed7d62e63ccdf2f5d7c2522a3d79ab6ec6b96a
EventNotification => 7ae362b820a0cda1b273c572a57973d5f072d8c2
FileSystem => 1be60cc71b88ec114fd6709ef9e4b95b76ec66a6
Hosting => b16de49807
HtmlAbstractions => 3910156947
HttpAbstractions => d879127c07
HttpClientFactory => 82be29fe331b676b95e6560dbb0f4644f5315792
HttpSysServer => b003ed4266
Identity => 3e57162499
IISIntegration => 3761667e36
JavaScriptServices => da66cc1fee
JsonPatch => 39b31e0223
KestrelHttpServer => ee3ee4eb94
Localization => 0efd5c0de3
Logging => d09254b564c9f108a136287f558fd272100b84b1
MetaPackages => 647c557e85
Microsoft.Data.Sqlite => 38008a546f40a4ef404e14fdc2c5a219abddbdc6
MusicStore => 33aae6524e
Mvc => 1b9372f5b0
MvcPrecompilation => 14ae9e130c
Options => 7e04208fdc1bcd2aea33e4b8ce03544100e0a3b3
Proxy => 4d02721dad0139fe1e5622ae92f8c467b07b5409
Razor => a643531c05
ResponseCaching => 8b0c22a898
Routing => 29a3a109c6
Scaffolding => 883f67c0cb2406bce3be8ee3c645b38f17b356ad
Security => db19d87bfa
ServerTests => e6f91929e3
Session => f65a0dc62e
SignalR => 3fc0727ba0
StaticFiles => 9b8a7424a6

[auto-updated: submodules]
2018-04-23 12:35:47 -07:00
.vscode
build
docs
modules
scripts
src
.appveyor.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules
.travis.yml
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md
build.cmd
build.sh
dockerbuild.sh
korebuild-lock.txt
korebuild.json
run.cmd
run.ps1
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 (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.