Go to file
ASP.NET CI 395f311040 Updating submodule(s)
AADIntegration => 572536d5f8
Antiforgery => bf03cf81e7
AuthSamples => 2fd81c5c0d
AzureIntegration => fba173047c
BasicMiddleware => b49931ed56
BrowserLink => efa2cb7866a9ae1230356e57f5a140757fddc56b
Caching => 89c7b9512f310852b6783bb0ebbb01b433c9c156
Common => 5cbaecdcaec4d59f2645730faa05588864bf4c54
Configuration => f5ae2516d120f5e26571e7039957cd5d2882c8f6
CORS => 5b19d1d0f7
DataProtection => 1135ed21cc
DependencyInjection => c8fe089e4e46198288243e33120db06c9773fc3d
Diagnostics => 4fc5c7c11b
DotNetTools => b88c6fcd19
EntityFrameworkCore => 9179a36158efd20cfc10dabe5a1a22d4444e6dc4
EventNotification => fefadab3e3da0ad3ffb4770cb96d54270378f333
FileSystem => 825947a994296b2c9eddf5253884472103633506
Hosting => 2e0e323199
HtmlAbstractions => 2c486604d7
HttpAbstractions => 4f0908d2f2
HttpClientFactory => 3a0cdf94e43e6e7f249f02ad1702626d733fb5aa
HttpSysServer => 49d9599aa8
Identity => f2652e94bb
IISIntegration => 59d70ccb4e
JavaScriptServices => e231b29e58
JsonPatch => 05b58f8263
KestrelHttpServer => 93d594808c
Localization => 42ba4fc708
Logging => f20d3a2a0ccd838e231b829ea366f6e1541f3ceb
MetaPackages => bdc9ab00f6
Microsoft.Data.Sqlite => 71acbb593f4e4eb6f70bdaf6d29103ffc4f8dc2c
MusicStore => c689e78a1d
Mvc => cc65115be1
MvcPrecompilation => 794567b946
Options => 92db5a14721d973fe314e9496e863a156892e024
Proxy => 025e86df703f865a8a7ff9e396d20da2fc1623f5
Razor => 864a17c9a5
ResponseCaching => b74095a067
Routing => 33348b4e00
Scaffolding => 359a9754e8b6f2653c94f7a029ace7dae2fd6d15
Security => b16af1600e
ServerTests => abec60a34d
Session => 7b1292a74e
SignalR => 261f27eb55
StaticFiles => bd8183ab29
Templating => 9bda3a60a6
WebSockets => 488d30fa15

[auto-updated: submodules]
2018-09-28 17:43:39 -07:00
.azure/pipelines
.github
.vscode
build Update .NET Core to 2.2.0-preview3-26927-02 2018-09-27 16:19:50 -07:00
docs
eng Use Microsoft400 for code signing CAB, MSI, and installer bundles (#1433) 2018-09-27 12:58:41 -07:00
modules Updating submodule(s) 2018-09-28 17:43:39 -07:00
scripts Make hosting bundle get prodcon runtime versions (#1435) 2018-09-27 16:44:40 -07:00
src automated: bulk infrastructure updates. Update bootstrapper scripts and remove unnecessary signing properties 2018-09-28 17:19:45 -07:00
test
.editorconfig
.gitattributes
.gitignore
.gitmodules
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 Updating BuildTools from 2.2.0-preview1-20180918.1 to 2.2.0-preview1-20180928.3 2018-09-28 22:51:21 +00:00
korebuild.json
run.cmd
run.ps1
run.sh automated: bulk infrastructure updates. Update bootstrapper scripts and remove unnecessary signing properties 2018-09-28 17:19:45 -07:00
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.