Go to file
ASP.NET CI 7aaa775275 Updating submodule(s)
Antiforgery => 26f65bd70e
AuthSamples => 8562d04feb
AzureIntegration => 332f7ab299
BasicMiddleware => 36a6d85931
BrowserLink => 303a4923e0d7c62230cb34de24da3bc8ec530400
Caching => 28a386c8b69caa84cb1e66802e4ba94d31f38f45
Common => f2162984a113dac201c8ebee508049bdff9bc1ad
Configuration => 2acd398c0a92db9fbf758f6518967b8e4b923b04
CORS => 3a0abce004
DataProtection => fe447472c5
DependencyInjection => 48e614ac9663661e39a6bea1c9506431212898f2
Diagnostics => 4a098af457
DotNetTools => fe6515e4f1
EntityFrameworkCore => 42313c5b4e3ed9dbb4e5a507af99b0b4297d1466
EventNotification => d0d74c983a0e897685bc84a09fb7724bb8d53ff4
FileSystem => 84b1a23131f2ea40ac2412a73458c5d792db4afe
Hosting => 864ad113cd
HtmlAbstractions => 2e5964f709
HttpAbstractions => 617ee97b21
HttpClientFactory => 4b19f76fd8c6993e6e6e579897b38f76ac09ec72
HttpSysServer => 336e85d19a
Identity => 884a1b7dfc
IISIntegration => 49feb2534d
JavaScriptServices => ce49379afb
JsonPatch => 93817a5193
KestrelHttpServer => 49cd0ef97f
Localization => 5eacb5ef03
Logging => d93d63bc564b69dd985e6d033f4e98af43985970
MetaPackages => b4788ddbe6
Microsoft.Data.Sqlite => 15add80d314995788416969a52c5a26fd3923425
MusicStore => f6907f5cab
Mvc => 89c94d0823
MvcPrecompilation => 1779c3f02e
Options => e9345c393e4a8f96b463dbb50d538f0983c28cb7
Proxy => 7cf40b806386b598c0dc1c72e722090de4799471
Razor => 6bc5c976de
ResponseCaching => df7d3a8f47
Routing => 41a6ce5dea
Scaffolding => e535e0f962f1e9d22d07d91a449ba57374b52297
Security => 4e3e8bb109
ServerTests => d5cc62c831
Session => b9584c3067
SignalR => a1a9154a5c
StaticFiles => cea0622cb8
Templating => bae1156511
Testing => 610bbbbdb6435b3c3413cbac554d8278ff0ad185
WebHooks => 8340c4cc128889388e56d9030b9e15db5ee96d25
WebSockets => d350e4508c

[auto-updated: submodules]
2018-03-06 11:11:04 -08:00
.vscode
build Move Microsoft.Build.* and System.Runtime.Interopservices.RuntimeInformation to stable versions list (#942) 2018-03-06 09:47:05 -08:00
docs Add pretty title 2018-02-26 16:53:56 -08:00
modules Updating submodule(s) 2018-03-06 11:11:04 -08:00
scripts Adapt update dependencies script to maestro 2018-02-28 15:12:01 -08:00
src
.appveyor.yml Merge branch 'release/2.1' into dev 2018-02-14 11:30:36 -08:00
.editorconfig
.gitattributes
.gitignore
.gitmodules
.travis.yml
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-15725 to 2.1.0-preview2-15726 2018-03-01 10:15:50 -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.