Go to file
ASP.NET CI 9560818073 Updating submodule(s)
AADIntegration => b30d882d67
Antiforgery => b2c6151f78
AuthSamples => 2636ed19fa
BasicMiddleware => dd08685cb8
Caching => 973cf32cb8b9aea4b01f07cc8905efb2ec4d032a
Common => b31e410695210ea4144129f3243f2b114b144c13
Configuration => 164548550f8ca9af4d80d54279658ded8cb7e78d
CORS => 0bbd938e2d
DataProtection => e97bfc21d3
DependencyInjection => a52cd5ef45c93bbaf788a52b6c69f12faeb84bb8
Diagnostics => c4d96a4cf5
DotNetTools => 4d8e109791
EntityFrameworkCore => 5d50126af9de59a203a862b7f61a6f0214e01ee0
EventNotification => 27c433d1a3f7a2931242530071177d6b49442d6d
FileSystem => aa0816bb48c140c04f4d88061780cb5c03e1cc0a
Hosting => c2760d6246
HtmlAbstractions => f2c2d80532
HttpAbstractions => b715933181
HttpClientFactory => 096b9724a7caa59efc6416aa2d3846a5a0298334
HttpSysServer => 5f75c127fc
Identity => cb8e316001
IISIntegration => 1a520434f0
JavaScriptServices => b7ba837d6e
JsonPatch => d07e370751
KestrelHttpServer => e3db975e83
Localization => c31876c396
Logging => 66e5be1c79d6ad9f89c6da1c76423a7c2bfa0b62
MetaPackages => 592d8e7190
Microsoft.Data.Sqlite => 2f88bc0dec2270fb4cfac15e21012c13a34a778e
MusicStore => 2c672e6b9a
Mvc => fd9e886eac
MvcPrecompilation => c15987960d
Options => 92c3caf8b281aaf313b6171e762d53e291130e97
Proxy => 2f84aecee50a85a53f3262a36f04f5154c9fc099
Razor => 3854d22e2a
ResponseCaching => 7daad3962c
Routing => 1197be4c60
Scaffolding => 17df13f353865ff1569836e6ff9780862b7516f6
Security => 5224d5f4a8
ServerTests => f338d07e29
Session => c01b50fa0c
SignalR => 968e31970e
StaticFiles => e1d1559367
Templating => f41984cc56
Testing => 739a9476030e42b11082d1a517a44e7d08eee6c1
WebHooks => 599cc9fa763ab9ed55092a5c8eaa1258304063d4
WebSockets => e32e585d56

[auto-updated: submodules]
2018-04-20 23:58:56 +00:00
.vscode
build Merge release/2.1 into dev 2018-04-20 14:13:56 -07:00
docs
modules Updating submodule(s) 2018-04-20 23:58:56 +00:00
scripts Fix script target 2018-04-17 12:26:08 -07:00
src Revert "Build runtime specific metapackages" 2018-03-30 13:02:45 -07:00
.appveyor.yml
.editorconfig
.gitattributes
.gitignore Update UpdateDependencies script 2018-04-11 12:49:04 -07:00
.gitmodules Adapt dev to release/2.1 2018-04-17 12:24:03 -07:00
.travis.yml
CONTRIBUTING.md
LICENSE.txt
NuGet.config Map properties DotNetRestoreSources => RestoreSources for metapackage builds (#955) 2018-03-13 12:23:18 -07:00
README.md Generate an arm32 shared framework without crossgen (#1037) 2018-04-06 13:49:22 -07:00
build.cmd
build.sh
dockerbuild.sh Update Templating submodule 2018-03-21 08:40:00 -07:00
korebuild-lock.txt Updating BuildTools from 2.2.0-preview1-17035 to 2.2.0-preview1-17037 2018-04-20 18:40:30 +00:00
korebuild.json Adapt dev to release/2.1 2018-04-17 12:24:03 -07:00
run.cmd
run.ps1
run.sh
version.props Adapt dev to release/2.1 2018-04-17 12:24:03 -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.1
Windows (x64) Installer (exe)
Archive (zip)
Installer (exe)
Archive (zip)
Windows (x86) Installer (exe)
Archive (zip)
Installer (exe)
Archive (zip)
macOS (x64) Archive (tar.gz) Archive (tar.gz)
Linux (x64) Archive (tar.gz) Archive (tar.gz)
Linux (arm32) Archive (tar.gz) (not available yet)
Debian/Ubuntu (x64) Installer (deb) Installer (deb)
RedHat/Fedora (x64) Installer (rpm) Installer (rpm)
Alpine Linux 3.6 (x64) Archive (tar.gz) Archive (tar.gz)

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.