Go to file
ASP.NET CI c356f1d514 Updating submodule(s)
AADIntegration => 01a6ba4d09
Antiforgery => 04baa0b5af
AuthSamples => 2de322be2c
AzureIntegration => 3b4267eecc
BasicMiddleware => 0a0cf8011b
BrowserLink => 86599a64314d6e026866f289a136794dbd3b60f2
Caching => 4e2e61f628ff68d2af1a8bb3b3a7db62acae399e
Common => 50cb8d1e52ce1a3ef16cf920f7c41eec464ddb4e
Configuration => f529702078e662b6268b3909faa285c6e072d05e
CORS => 0927e0cab3
DataProtection => c158d1cb94
DependencyInjection => aa19348e5c92baed35b3a327cb904d6aed8e7e8b
Diagnostics => 4762c651d5
DotNetTools => 14a19d4acb
EntityFrameworkCore => 0ace061912f95c02dad3f6730ae695b18bfd99b3
EventNotification => 1ec2154b8e5fb345f94bfc9ae39417bf59b576d4
FileSystem => 801db4a10234f0ffca910bdcbe89220563b1b9eb
Hosting => e54dcc023e
HtmlAbstractions => 7a9e70ac68
HttpAbstractions => 829bafe7b7
HttpClientFactory => 663a4fe5b380cc0ce3cdc6b45db231b483102c3c
HttpSysServer => ebf60fba57
Identity => a255edc9f3
IISIntegration => 2f46c921f5
JavaScriptServices => bc50741043
JsonPatch => 1c710b905b
KestrelHttpServer => 066e89ddf9
Localization => fa573e125e
Logging => 232dd2983c7d7389bb89418f0dc1387b1f87ffe9
MetaPackages => 0c48eb0c97
Microsoft.Data.Sqlite => 0aee627bfc4ac1287f9924fa9b68b409bdbc9280
MusicStore => b232dd0104
Mvc => c1fc38a3e8
MvcPrecompilation => c9b2a246a4
Options => 67585a9338fa6ec81dd08bdd81ed7877e530404f
Proxy => 86e49dcf5c9992e5ed57b41778de7f67ee0b1dfb
Razor => aac85ceb4f
ResponseCaching => 7d45174565
Routing => 68dd5040a5
Scaffolding => 547c38b679732a5c574aaf13e0908a5514e6dbef
Security => 79f8442ce2
ServerTests => dc74ef4c01
Session => 0b446d6fcb
SignalR => b05f0fc0be
StaticFiles => 9ca9bd1053
Templating => 7a0967e5c6
WebHooks => d8c34f8bc7aac9e9e5de2c7372df6b394b023fd2
WebSockets => 75c49d2bda

[auto-updated: submodules]
2018-08-19 12:38:51 -07:00
.github
.vscode
.vsts/builds Add PR validation on VSTS 2018-08-10 09:19:06 -07:00
build Upgrade to .NET Core 3.0.0-preview1-26817-04 (#1315) 2018-08-17 10:42:47 -07:00
docs
modules Updating submodule(s) 2018-08-19 12:38:51 -07:00
scripts Merge branch 'release/2.2' 2018-07-25 11:19:21 -07:00
src Merge branch 'release/2.2' 2018-08-10 10:13:35 -07:00
test/SharedFx.UnitTests
.editorconfig
.gitattributes
.gitignore
.gitmodules
CONTRIBUTING.md Update CONTRIBUTING.md 2018-07-24 10:44:22 -07:00
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 3.0.0-alpha1-20180816.9 to 3.0.0-alpha1-20180817.3 2018-08-18 00:22:50 +00:00
korebuild.json
run.cmd
run.ps1 Add PR validation on VSTS 2018-08-10 09:19:06 -07:00
run.sh Add PR validation on VSTS 2018-08-10 09:19:06 -07:00
version.props Prepare 2.1.4 patch 2018-08-07 21:24:01 +00: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 (master 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.