Go to file
ASP.NET CI eb582dd9ba Updating submodule(s)
Antiforgery => b4d67776af
AuthSamples => a0bbd026a7
AzureIntegration => 8bad262294
BasicMiddleware => 8f0cc61808
BrowserLink => 3cacdef43572f7d65b4bd161b09c62030474572f
Caching => be34c214c2fd1a9557c97bb3f4ff5416df941bd0
Common => cd1f5d2d1596df03a2f13ea259892504cb2d245b
Configuration => 6ea15fafccfd17935d91cc55b04f819b00348f72
CORS => 823bbc2809
DataProtection => 2c3c2c081f
DependencyInjection => da64773270c2891158e09915af5c415f69c38101
Diagnostics => 59a479df5a
DotNetTools => 7934d538e2
EntityFrameworkCore => 2fba6acf814f589082e9d7abed630392a0aa521c
EventNotification => a45094a42b201d8446e34febcc22ca19f3ec6bda
FileSystem => 7af495a453d990b39f2cdd33510b942435955c70
Hosting => af5e702223
HtmlAbstractions => 48cc16eadc
HttpAbstractions => b2a87f1b1a
HttpClientFactory => 53e1237eedc45ebaca6343100fa339e0da052a48
HttpSysServer => fc58ab8033
Identity => f3c1ab6b0c
IISIntegration => e80e0803c6
JavaScriptServices => 975d537a0a
JsonPatch => a7589fbd7d
KestrelHttpServer => bf138224d8
Localization => 19577700ad
Logging => d62cbc29c134227a2d93264f4269d7f2d95954ee
MetaPackages => afee0de3e4
Microsoft.Data.Sqlite => 3fe5a133f5e50c00be05ec5021a38a72aca75c1b
Mvc => 64a11e2093
MvcPrecompilation => a366dd9165
Options => 5a7bec0174543ddfb546f74729907243ad7c4831
Proxy => e153fff645969afd61f44e6c2919c438d8f4c31c
Razor => 2e6c06bc6f
ResponseCaching => 99fff3c7e8
Routing => b8b83cbfa6
Scaffolding => f0f8cba57439859c048c5e6f67b2caac062415b1
Security => c67cc03b77
Session => bddb50b7f2
SignalR => 9a128b42ef
StaticFiles => ae5485a7b4
Testing => f15ef2a300fea7fd3f2db86db665df2cd52d9885
WebSockets => 28fe0bc601

[auto-updated: submodules]
2017-12-31 14:29:18 -08:00
.vscode Change output of sharedfx build to match feed layout 2017-12-27 11:12:02 -08:00
build Remove Microsoft.AspNetCore.Certificates.Configuration.Sources 2017-12-30 12:27:31 -08:00
modules Updating submodule(s) 2017-12-31 14:29:18 -08:00
scripts Catch any error in UpdateRepos 2017-12-07 11:25:34 -08:00
src Clean up shared framework generation. 2017-12-07 11:00:24 -08:00
.editorconfig
.gitattributes
.gitignore
.gitmodules
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md Update README with version badges for daily builds (#732) 2017-12-29 12:01:01 -08:00
build.cmd
build.sh
korebuild-lock.txt Update to build tools 2.1.0-preview1-15651 2017-12-28 16:17:15 -08:00
korebuild.json
run.cmd
run.ps1 Fixup the run.sh build script 2017-12-20 10:04:45 -08:00
run.sh Add more bash magic to our script to avoid issues with unset and unbound variables 2017-12-20 11:56:12 -08:00
version.props

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)
Windows (x64)
Windows (x86)
Linux (x64)
macOS (x64)

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.