Go to file
ASP.NET CI f14307c027 Updating submodule(s)
AzureIntegration => f7689a10ad
BasicMiddleware => a174d5a733
BrowserLink => a49aa9bee3674518e8019ba480ab1872c8b3862b
Caching => b8d94ce01c685a2f09eecbb9267b85f9031dba22
Common => 4d45e86c771e537444f0246855839c18211cd906
Configuration => f333186647056282d977c8441371d3c36c783b84
CORS => bf7017bf99
DataProtection => 3d30ea8249
DependencyInjection => 72ede31185efb12792bca94554a6ef696413c1d0
Diagnostics => 05ad84fe66
DotNetTools => f897a14718
EntityFrameworkCore => 24e1e0be5d73f871c14dca7c019bfab75ae45cd5
EventNotification => 260cf87b5dddd671d175098881363c73175b5935
FileSystem => ee9d6ec187069ae786972b84ad3fb82718fe2ebd
Hosting => c54e0962c0
HtmlAbstractions => b7873a4249
HttpAbstractions => ab0dbaa347
HttpClientFactory => 529addd9b54f830f369ba604ee823fbc205331a1
HttpSysServer => 3261ba52cf
Identity => e0885a5017
IISIntegration => a4295aeb5e
JavaScriptServices => 1d504e4565
JsonPatch => d851546646
KestrelHttpServer => dbbbaf8e4b
Localization => 83bb802260
Logging => c549d7cb9580aa4fa8091547913da4868b8bd122
MetaPackages => fad6ec6b9a
Microsoft.Data.Sqlite => cf3660e6f712579a6cda2a0aab7d8d7ee5de0f84
Mvc => b33bda1836
MvcPrecompilation => 26f4872976
Options => a3298287b72a15530b459a7a7125404ca2ebc1fc
Proxy => 13d5a2c78c898dd7854c26953423d6c37b8fee79
Razor => 60e5818884
ResponseCaching => 3e0e1ed24b
Routing => df587c372b
Scaffolding => 830508b7dd2936fae5a23d4d377f73123978b3a2
Security => dda0921c0a
ServerTests => e86310835a
Session => 0d6ecce8c5
SignalR => 74198712c6
StaticFiles => 5b582f13a3
Templating => 56e2dbebf2
Testing => 66e39cf84e0ea9716cbc8fed841a6fbd0921100e
WebHooks => cb3ab0aa3d5a45670b3a5ba3bffbe10fb8a73e83
WebSockets => 7a764bf842

[auto-updated: submodules]
2018-02-21 19:43:42 -08:00
.vscode Update publish to include more metadata in the manifest (#826) 2018-01-30 13:36:39 -08:00
build Add new Http.Polly package to universe 2018-02-21 17:11:34 -08:00
docs Add spec for requirements of the LZMA [ci skip] 2018-02-15 11:31:17 -08:00
modules Updating submodule(s) 2018-02-21 19:43:42 -08:00
scripts Fail script when push to repo fails 2018-02-21 15:32:16 -08:00
src Merge branch 'release/2.1' into dev 2018-02-01 15:01:46 -08:00
.appveyor.yml Merge branch 'release/2.1' into dev 2018-02-14 11:30:36 -08:00
.editorconfig
.gitattributes
.gitignore Add script to batch update travis and appveyor yml files (#834) [ci skip] 2018-01-31 14:57:59 -08:00
.gitmodules
.travis.yml Run more checks on Universe PRs 2018-01-30 13:03:42 -08:00
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md Put aspnetcore-runtime installers into a subfolder in dotnetcli (#886) 2018-02-14 11:28:57 -08:00
build.cmd
build.sh
korebuild-lock.txt Updating BuildTools from 2.1.0-preview2-15710 to 2.1.0-preview2-15711 2018-02-21 13:25:32 -08:00
korebuild.json Fix #785 - publish nuget packages and the shared runtime at the same time 2018-02-07 14:40:08 -08:00
run.cmd
run.ps1
run.sh
version.props Ensure experimental version suffix contains the build number 2018-02-08 08:25:00 -08: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.All
Microsoft.AspNetCore

Daily builds

NuGet packages

Packages can be found on https://dotnet.myget.org/gallery/aspnetcore-dev. 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)
Debian/Ubuntu (x64) Installer (deb) Installer (deb)
RedHat/Fedora (x64) Installer (rpm) Installer (rpm)

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.