Go to file
ASP.NET CI e9d445b8d5 Updating submodule(s)
Antiforgery => 0401377fe4
AuthSamples => f20656aa0f
AzureIntegration => 6a49d1b992
BasicMiddleware => 7db86f0591
BrowserLink => bd952e27627db68c25bd58d06adb05763988fb8f
Caching => 9542fcdf44ee7ed9c3443c4f654639744c1c212d
Common => e1f96c53f44ec904f5c504d0630333e8f40f6c72
Configuration => 3c2eccf24621ed49908921f67bf25dd2a0c7eadc
CORS => 177f528b93
DataProtection => 980ba44531
DependencyInjection => 23add1812c5248f35e8a217452ae3c8f3845da9a
Diagnostics => f90337c1a6
DotNetTools => 9f5b1aa18a
EntityFrameworkCore => 06e5d9256963b8eca7decab7f8005feb249bcfb3
EventNotification => 12343f81a405c47bbf4f0728058d6f1fd806d066
FileSystem => 642f88383c8ade6aaccf655ef3363feb126b90e1
Hosting => 9f4c7c172f
HtmlAbstractions => 3746bf4286
HttpAbstractions => 6558c2bd07
HttpClientFactory => e09b6891a23c05631be7fd4bf02a3e7801cbdb18
HttpSysServer => 8806b50c30
Identity => fbb0dde2a4
IISIntegration => 8338c40023
JavaScriptServices => f291f87dfc
JsonPatch => 8f09923324
KestrelHttpServer => 7fde08d6fb
Localization => 683ef56b76
Logging => 97274a21360e3e045ef147c2ce023c8a9a88770c
MetaPackages => 0494f7ee5c
Microsoft.Data.Sqlite => 79c66d343e5346c2488e6bdbd8c11ec5864263dc
MusicStore => 30d032dc2e
Mvc => bfb5f23647
MvcPrecompilation => fd83fd399f
Options => f36d7376ed62324b47c46584c362738a9694342e
Proxy => 0017dab81fbe4ab3274e198b99ca86791be211c7
ResponseCaching => 5b239d44c0
Routing => 34c60bc14d
ServerTests => 50db832409
Session => 0652fbcfa8
SignalR => a6f30623d8
StaticFiles => 8670c223a6
Templating => c50e9e90f0
Testing => 1c586286d75fd4c2d16b91df79976bca2a05afdb
WebSockets => 8e15dab86b

[auto-updated: submodules]
2018-01-07 00:03:13 +00:00
.vscode Change output of sharedfx build to match feed layout 2017-12-27 11:12:02 -08:00
build Fixup missed variable rename 2018-01-05 19:38:11 -08:00
modules Updating submodule(s) 2018-01-07 00:03:13 +00:00
scripts Fix UpdateBuildTools.ps1 to work on a clean machine (#743) 2018-01-04 15:05:52 -08:00
src Clean up shared framework generation. 2017-12-07 11:00:24 -08:00
.editorconfig
.gitattributes
.gitignore Merge branch 'rel/2.0.3' into dev 2017-11-08 16:31:07 -08:00
.gitmodules Update submodules manually to react to corefx changes 2018-01-04 11:25:13 -08:00
CONTRIBUTING.md
LICENSE.txt
NuGet.config Merge branch 'rel/2.0.3' into dev 2017-11-08 16:31:07 -08:00
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 Updating BuildTools from 2.1.0-preview1-15659 to 2.1.0-preview1-15661 2018-01-05 19:44:13 +00: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 Only produce one version of the runtime store, templates packages, and installers (#665) 2017-11-21 17:05:52 -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)
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.