Go to file
ASP.NET CI 1b8ed9ee57 Updating submodule(s)
AADIntegration => 36ee1a1223
Antiforgery => ed2f15bc6e
AuthSamples => 9c6c7ae6bd
AzureIntegration => e849173691
BasicMiddleware => e425b27c05
BrowserLink => 528e7d4fe5eed9f1604360cd2cec70c9ba05c911
Caching => 6f5fb1e3d6bb255253a7f740549c9b324ddbff04
Common => 6461c675ccabc70e261fdde27cbb41a5db09526b
Configuration => d6c5092c4e46ff819fabc2a8e5c46b8d3cb013a9
CORS => cbf2f4ca77
DataProtection => 2228213708
DependencyInjection => 87325a0e50179ce480646a12b13e1fe67a698eeb
Diagnostics => a5ba2590d5
DotNetTools => cb954e15f8
EntityFrameworkCore => e9653479d11476141187527b3599757371356086
EventNotification => 26f6be93648277f0079246f1c1401f4c9636906b
FileSystem => b38748bcf4987498ee21596064bd089957962dcb
Hosting => 68dc961abb
HtmlAbstractions => 8bb788ef9e
HttpAbstractions => d0a32cc354
HttpClientFactory => 38a3611e5a5994ebfa53393899df1aaf3b90023f
HttpSysServer => 7de560b7ac
Identity => 4e84251cbf
IISIntegration => 96b42dc827
JavaScriptServices => 5fa87a0313
JsonPatch => b34f628412
KestrelHttpServer => 868acacf68
Localization => 758cefa465
Logging => 8252a2198726e36425e9364e5168a6ce359672ab
MetaPackages => 5f4f181c97
Microsoft.Data.Sqlite => 8f1e9c390ada36acf9d1ac55d3c305647e107ad8
MusicStore => 96beb8413d
Mvc => d2cfbd2671
MvcPrecompilation => 40c00c4165
Options => 26cf5666659608458bca96cea5eed7d8ff6bdd60
Proxy => 5bc572eaacc39cb09d490078f1f4b3476da2ef08
Razor => bbddd29ab8
ResponseCaching => d1ddd44130
Routing => 2d53d398b2
Scaffolding => 99a678424d0747842de49677bbe7da80ffbfb42e
Security => 8b30c73597
ServerTests => f57669db86
Session => 9b16c7907e
SignalR => 30c67648ec
StaticFiles => 2df2d2865f
Templating => 5911fc0be1
WebSockets => c48f2b953e

[auto-updated: submodules]
2018-07-08 12:37:18 -07:00
.github
.vscode
build
docs
modules Updating submodule(s) 2018-07-08 12:37:18 -07:00
scripts
src
test/SharedFx.UnitTests
.appveyor.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules
.travis.yml
CONTRIBUTING.md
Directory.Build.props
Directory.Build.targets
LICENSE.txt
Microsoft.AspNetCore.sln
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.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.