Go to file
ASP.NET CI 449c82c21e Updating submodule(s)
Antiforgery => 09afaf3e3d
AuthSamples => 94827f3783
AzureIntegration => 77d2e7c1a6
BasicMiddleware => b22f4b11b9
BrowserLink => bb2a28d4326b39f22f90c35498be45b9ef7af068
Caching => acf7cfb9e9f97f592c140bbd4fed552df94512e2
Configuration => 2ba3a05af48c83f3471abc771d9fb03f39e09000
CORS => c873fc55f9
DataProtection => eca8f9b654
DependencyInjection => 01de8b81c86dfa0e5eb12d8a3c4944d075016e78
Diagnostics => d563f7d314
DotNetTools => b7e2977333
EventNotification => 113ab2aca28f4a7cc67a7b1ac1664f7ab2f8817b
FileSystem => c67de8ff4eaf063e798ea276f8cdc83394599a05
Hosting => e2386a7885
HtmlAbstractions => 0f65354175
HttpAbstractions => 2803541f53
HttpClientFactory => 69e5be0045de8646834330372cea3b36ff66ce61
HttpSysServer => 60484d001a
Identity => f15e49fa99
IISIntegration => dd466635fa
JavaScriptServices => a1c2c18326
JsonPatch => add3420736
KestrelHttpServer => b57ac72431
Localization => 2f8d58a2f0
Logging => 8f205be462b2e7b8353a2375b477a43e92d23a9c
MetaPackages => c3d6c28dd1
MusicStore => ebb92492b7
Mvc => 4abf2909ae
MvcPrecompilation => 5bf6f2a194
Options => 066dfacd871f3a99777d166e12771cba537da66b
Proxy => 1cc768b82f28c17b6697203b362401cab8842c19
Razor => 0452feced7
ResponseCaching => ba63da88fd
Scaffolding => f8c057922a12a6f35eaa22e078397ef479b3a8e7
Security => da066d50e0
ServerTests => 98a84a58e1
Session => b68a9c62c7
StaticFiles => 619771d286
WebSockets => 27bcf521a1

[auto-updated: submodules]
2018-01-04 02:37:11 +00: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) 2018-01-04 02:37:11 +00:00
scripts
src
.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
run.sh
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.