Go to file
ASP.NET CI 57ac08f4b3 Updating submodule(s)
BrowserLink => 9ceb5fb8a2ff82123f1a6f3d5db05bc1c3c8ed05
Caching => 91013ceecfefa4c06dc6964d5433be837d97e22a
Configuration => cf9a3b90e55a7adeb6a2eeb7246afd38291f6717
CORS => 4d50d4e7e4
DataProtection => 86b35c1932
DependencyInjection => 371be6dc91c1181811d13457dde0e492c790ebc7
Diagnostics => 008e13a4e7
DotNetTools => 157ec70a6b
EventNotification => 3679f4cf918f935ed25dea88870c92ee2b31eada
FileSystem => cfa21feb4c1fc6e5c58352a075b230f57664a805
Hosting => c8718c1c56
HtmlAbstractions => c3635d20f4
HttpAbstractions => 64e4d3215f
HttpClientFactory => 8d001a0da7a1199f803b1b325ebfc02d9469c7ed
HttpSysServer => 4e8dbc7b9d
IISIntegration => 00d7073811
JavaScriptServices => a4bb72e58c
JsonPatch => 9ab15a0a77
Localization => e30ea68fda
Logging => 8ed421c11c9f7646a8eb4984b5f04099b0250a05
MetaPackages => fc7a3e9498
Microsoft.Data.Sqlite => 668ae13aa51caf9f81b37abb87c1479148e52341
MusicStore => f228f3b6e7
Mvc => 6a8f015d34
MvcPrecompilation => 7ee381725b
Options => 38f3d3a80afcdfddc55cc5c9a424fbe66e17b86f
Razor => b3eecf0d46
ResponseCaching => 53401c9bf8
Routing => deddb336b7
Scaffolding => 2be0b7ecb275dae0d603637a253bf2379960a083
Security => f724fcf4ac
Session => f781bad850
StaticFiles => e8b25a5b48
WebSockets => 514126588d

[auto-updated: submodules]
2018-07-24 19:44:54 +00:00
.github Add CODEOWNERS file (#1231) 2018-06-28 12:04:53 -07:00
.vscode
build Add Microsoft.AspNetCore.Server.IIS to metapackges (#1263) 2018-07-17 09:21:32 -07:00
docs
modules Updating submodule(s) 2018-07-24 19:44:54 +00:00
scripts Pin to the latest stable 2.1.x corefx packages 2018-07-09 18:16:57 -07:00
src Update LZMA to restore netcoreapp2.2 packages 2018-07-06 13:45:30 -07:00
test/SharedFx.UnitTests Merge branch 'release/2.1' into release/2.2 2018-07-05 10:21:51 -07:00
.appveyor.yml
.editorconfig
.gitattributes
.gitignore Merge branch 'release/2.0' into release/2.1 2018-07-05 20:12:24 -07:00
.gitmodules Remove aspnet/WebHooks from release/2.2 2018-06-29 11:10:56 -07:00
.travis.yml
CONTRIBUTING.md
Directory.Build.props Refactor LZMA generation to support Docker and Antares usage 2018-07-06 13:15:23 -07:00
Directory.Build.targets Add unit tests for the shared framework (#1228) 2018-06-27 14:56:10 -07:00
LICENSE.txt
Microsoft.AspNetCore.sln Add unit tests for the shared framework (#1228) 2018-06-27 14:56:10 -07:00
NuGet.config
README.md Update README, config, and scripts to use release/2.2 (#1232) 2018-06-28 15:51:15 -07:00
build.cmd
build.sh
dockerbuild.sh Ensure trx logging is reported correctly when building in TeamCity 2018-07-05 10:14:35 -07:00
korebuild-lock.txt Updating BuildTools from 2.1.3-rtm-15800 to 2.1.3-rtm-15802 2018-07-10 01:32:19 +00:00
korebuild.json Update README, config, and scripts to use release/2.2 (#1232) 2018-06-28 15:51:15 -07:00
run.cmd
run.ps1
run.sh
version.props Update README, config, and scripts to use release/2.2 (#1232) 2018-06-28 15:51:15 -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.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.