Go to file
ASP.NET CI fda857c676 Updating submodule(s)
Antiforgery => b30a9785be
AuthSamples => d8075b2f29
AzureIntegration => d84fe9326c
BasicMiddleware => 103190796f
BrowserLink => 2be44200ce2160533466e3a0725cc44647343ce1
Caching => 0e8987e9ef15985ead0eb36c56302313a676e332
Common => 4cefe6db4ed641baa78ad453b2282ac009bd1a6d
Configuration => 9f860b8a1b0e5f9de31b3045974be7f669d55c21
CORS => 936588acf6
DataProtection => a178c8c5af
DependencyInjection => 43869b9a686e1fff5a1e57100241ce4e764dfe44
Diagnostics => 5d2fc105d1
DotNetTools => aee1afce91
EntityFrameworkCore => 49ed6e363627a0f4a2324d5436c6667a7b628c57
EventNotification => 52ccfc0a3439ce2fc189b5ce48e52e5886fe54c4
FileSystem => aed75ef951a0fc6a738bdb0040b2e8dc61ba7417
Hosting => 515bc2e66d
HtmlAbstractions => 52249d6038
HttpAbstractions => 271612a899
HttpClientFactory => 1b0736f53f3e9228ccdba378736c977d0033d202
HttpSysServer => fd1144cf2f
IISIntegration => a0bcc5f377
JavaScriptServices => 4af70a0907
JsonPatch => 6d0dfc1145
KestrelHttpServer => 7098c8d07d
Localization => 2ce152b4a4
Logging => 0dc58044269aec7499668ab7b3872fb54f21dacd
MetaPackages => 054f36f91a
Microsoft.Data.Sqlite => 9fdd8e083b660085feedba72065fbfbd86801667
MusicStore => a48fc2276c
Mvc => 8139ee9631
MvcPrecompilation => 74fcf5f1af
Options => b1b0c3ba52e37cd3048c2584f86feace903e2154
Proxy => 2107ae73acdbfd264f86e4eec618435fc04cf0bf
Razor => 0c6aadb897
ResponseCaching => aa5dcfe8b1
Routing => 6fcbf67d90
Scaffolding => 193f84b0f7c725b1c291b61e5573a3d99c0b42a2
Security => 59c7cd0efe
ServerTests => 6d738df09f
Session => c0d524e191
SignalR => f939a7cd53
StaticFiles => a54071bb5d
Templating => 2f42f8f8b4
WebHooks => ffebe4c0ef8aed12971747b08aec05b1da91abe6
WebSockets => b369d335dd

[auto-updated: submodules]
2018-02-10 00:10:25 +00:00
.vscode Update publish to include more metadata in the manifest (#826) 2018-01-30 13:36:39 -08:00
build Update Xunit dependency (#869) 2018-02-09 10:50:29 -08:00
docs
modules Updating submodule(s) 2018-02-10 00:10:25 +00:00
scripts Merge branch 'release/2.1' into dev 2018-02-01 10:40:07 -08:00
src Merge branch 'release/2.1' into dev 2018-02-01 15:01:46 -08:00
.appveyor.yml Run more checks on Universe PRs 2018-01-30 13:03:42 -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 Merge remote-tracking branch 'origin/release/2.1' into dev 2018-01-25 11:03:00 -08:00
.travis.yml Run more checks on Universe PRs 2018-01-30 13:03:42 -08:00
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md Update README.md with links to release/2.1 installers [ci skip] (#83 2018-01-31 10:24:13 -08:00
build.cmd
build.sh
korebuild-lock.txt Updating BuildTools from 2.1.0-preview2-15697 to 2.1.0-preview2-15698 2018-02-07 11:28:35 -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 Update versions to include prodcon build id (#819) 2018-01-30 10:38:09 -08:00
run.sh Update versions to include prodcon build id (#819) 2018-01-30 10:38:09 -08:00
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.All
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.