Go to file
ASP.NET CI faddcd2975 Updating submodule(s)
AADIntegration => 7662f101c2
Antiforgery => 861a5d4d47
AuthSamples => d9c50cab30
AzureIntegration => 4dc1dca0c7
BasicMiddleware => f171aa4a64
BrowserLink => b5f2e831d89a2a8dd248add1070bfb68405184df
Caching => e2bc07490f22592ea9454a07d1d60d46319b26b5
Common => ab703a2daa8a03c5d21c6afd3c0158323d4cf3d6
Configuration => 590a92bee4b672e6d5363c88d91ff83afc5fba78
CORS => 9225e5da80
DataProtection => 4143059054
DependencyInjection => 0723ef0d295787f9f57d5b623cab7d5a54ae03d3
Diagnostics => 3ac6439dcf
DotNetTools => 7517263bd4
EntityFrameworkCore => cb0a43c7f947274c70b0880e776dec730e532c7f
EventNotification => ac6e7584a2f584996518a7597b329aceacfed080
FileSystem => b044f45363341949e22b59ef87c37191f9011edc
Hosting => b195e36cc3
HtmlAbstractions => 89a2849126
HttpAbstractions => de1f0ac3ff
HttpClientFactory => 14380575acad6a66f39704fc60ef07a1ffb96313
HttpSysServer => 8181856014
Identity => 415a6cb53a
IISIntegration => 6172677a0a
JavaScriptServices => 622be9084a
JsonPatch => 41614badf9
KestrelHttpServer => a1ffc5345b
Localization => 1e6af9ee90
Logging => 5602ec6da4dc6ff40054fb3e8f46a7174dd8b698
MetaPackages => badd2e81b8
Microsoft.Data.Sqlite => bf031d3ecf70deebba2c36fa89912b89fc65f13a
MusicStore => d66734130e
Mvc => 6abb4d9e81
MvcPrecompilation => 7703802661
Options => 6127812e29dbb9041e7e9ac8375cf8f29ea01a60
Proxy => 5a0c5b44b656df64a30066287bbf42f7d5213415
Razor => 2bf00ff9a6
ResponseCaching => cf4ef27bcc
Routing => df27b3ec10
Scaffolding => a8dde8cbb0b96277aa30dd2a635a5dd653366b93
Security => b3ad10ef51
ServerTests => 29b7150b65
Session => 65d45eed6a
SignalR => 3f05f09fe4
StaticFiles => 7da4635215
Templating => 3db9c1e488
WebSockets => 35000369eb

[auto-updated: submodules]
2018-09-16 12:36:30 -07:00
.github
.vscode
.vsts/builds add component detection task (#1338) 2018-09-10 14:58:47 -07:00
build Add non-capturing timer sources package 2018-09-11 12:41:48 -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-16 12:36:30 -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-20180910.3 to 2.2.0-preview1-20180911.1 2018-09-11 22:49:39 +00: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.