Go to file
ASP.NET CI e1f86b1211 Updating submodule(s)
Antiforgery => 828036796f
AuthSamples => b9c006bb59
AzureIntegration => 30a1fa02f9
BasicMiddleware => 996f0545b0
BrowserLink => 122877d53f4148aaeffd98aca7d62618add61b2e
Caching => 0709422d6c8f57821714f3fe585258e3c70c9ee9
Common => 38fb78b2cd33b9ff7152b90608d651b386b0cbad
Configuration => aee3a9e1dc6499b397b98b0a4e1081ceef1b19cd
CORS => 5ccfd3c568
DataProtection => 68bff8e05e
DependencyInjection => 0c2dac8b2a0e9495cf5c3de10143ea656bfab3c1
Diagnostics => 8da9b82ba6
DotNetTools => 0b579cda2f
EntityFrameworkCore => bdf8bd214359875232414f698bcead9d09c7324c
EventNotification => e37d36892daf76135f68ccd8e7a20836193f34fe
FileSystem => f94e91ebf8b281341300bc0ba73c37ec1a55a2f4
Hosting => 23b4ecd8d3
HtmlAbstractions => a992ce0d7b
HttpAbstractions => 63c7963595
HttpClientFactory => d266697b3c4d62f4b5ab6da07abdbc89dcba0e91
HttpSysServer => 6bf39a741d
Identity => db11892a20
IISIntegration => fcbe74fbf1
JavaScriptServices => 91a1d83acd
JsonPatch => a1b6c4c7aa
KestrelHttpServer => a3911269c5
Localization => 8fee6bf998
Logging => 6d6650a3afcc98bf52f9bb1223c3ae6561de8344
MetaPackages => 7e776fe455
Microsoft.Data.Sqlite => 00528614a328f7a8ea14ca6782628dbd6e669ac8
MusicStore => cc0eaf9a76
Mvc => e35d0bc43f
MvcPrecompilation => 8325e36b80
Options => a28393b609132f5d5df89a621ad9583fd9ad3584
Proxy => a1a1af04319e5f00634bcf732d5346aab03782d3
Razor => 62df770c39
ResponseCaching => d9778252d0
Routing => 1d1c9c5118
Scaffolding => 23fa350186d2b04c26ce3f7f25d3f78164be7683
ServerTests => eef15e4d37
Session => 1cb0c861ee
SignalR => 13b25ec518
StaticFiles => 3cd6add095
Templating => 3267789666
Testing => 285e40dd72ed4b6815d72500e90c611636cc2097
WebHooks => 50fed369c7174d8714c14b9412a68d2ef5e0e268
WebSockets => 4a49d6dd75

[auto-updated: submodules]
2018-02-28 12:12:36 -08:00
.vscode
build Add new WsFederation package (#927) 2018-02-28 10:16:59 -08:00
docs Add pretty title 2018-02-26 16:53:56 -08:00
modules Updating submodule(s) 2018-02-28 12:12:36 -08:00
scripts Add script for setting and pushing tags (#919) 2018-02-26 16:32:02 -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-15721 to 2.1.0-preview2-15723 2018-02-26 11:24:04 -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.