Go to file
ASP.NET CI b0bfd5b77a Updating submodule(s)
AADIntegration => c29b645662
Antiforgery => 823a839471
AuthSamples => 18dd876c95
AzureIntegration => 40c5f0d2a5
BasicMiddleware => b17924573a
BrowserLink => 5d8dafc71196ba5e4ee3676c81e9cc6faf925b0a
Caching => 31fcf736baa05496b2d7bb58c719e7e312a94f89
Common => 120098b0d78a9d921e6a85c3568eec464a8ac38f
Configuration => d315fa575a99438d29c8907686614240633780b0
CORS => 7df36459c9
DataProtection => f80ae73f95
DependencyInjection => b7e7562f73f89dfb609f4fecdce34279ec8c26ad
Diagnostics => f94ad0f202
DotNetTools => e975b87b91
EntityFrameworkCore => de44d56423f58ce3acf48ddaae17c370f2865ef0
EventNotification => 3567806b091f69e596967f70d3281a978596c736
FileSystem => a94b3a853ad3dab9179d7d8b7ba441aa254ee1d8
Hosting => 857df2f864
HtmlAbstractions => 05a34009e8
HttpAbstractions => cbafd89960
HttpClientFactory => f7569b3a5a16c2fe6cda02f67192967583071f24
HttpSysServer => 7fac2becc0
Identity => 01f8f366f7
IISIntegration => 9eb706e694
JavaScriptServices => 817c0e4f24
JsonPatch => 3d0502f947
KestrelHttpServer => 0c3b443e3c
Localization => c8ca5c5d9f
Logging => d6a62d7a7408da6a7f17ce339546cc6f9f303861
MetaPackages => b9f5b26a2e
Microsoft.Data.Sqlite => 2f6e336665efe44036a1808967f4a8599da620e6
MusicStore => 2fe37bf3e2
Mvc => 87c1389b5a
MvcPrecompilation => fee8961bcc
Options => 581da8184059a795a407f84d6ff0451b0338d19e
Proxy => 8bf95a5d04c44aec24be2adb5c16ae5f64cefa6d
Razor => 51868b4dc0
ResponseCaching => b38984e4fb
Routing => 72b61bf2af
Scaffolding => b41518f92b9c6acb59c5d22ba5b82ec88b2adfd4
Security => 6ec79a3dd3
ServerTests => 1435e4f9d9
Session => 63bb044cf1
SignalR => caa5bfeb65
StaticFiles => e4614bcdda
Templating => 7308a9311f
WebSockets => 17f216a325

[auto-updated: submodules]
2018-09-09 12:38:12 -07:00
.github
.vscode
.vsts/builds Update branding to 2.2.0-preview3 2018-09-05 16:37:32 -07:00
build Use built in DownloadFile task 2018-09-07 16:58:09 -07:00
docs
eng Set the signing cert for .msi files to the 'Microsoft' certificate 2018-09-06 16:30:03 -07:00
modules Updating submodule(s) 2018-09-09 12:38:12 -07:00
scripts
src Update build.ps1 2018-09-06 23:04:43 -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-20180907.4 to 2.2.0-preview1-20180907.8 2018-09-07 11:45:20 -07:00
korebuild.json
run.cmd
run.ps1
run.sh
version.props Update branding to 2.2.0-preview3 2018-09-05 16:37:32 -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.