Go to file
ASP.NET CI fae79d0591 Updating submodule(s)
Antiforgery => d2cfd09acf
AuthSamples => 3212b45dcb
AzureIntegration => 9645612ae3
BasicMiddleware => 237ae410ff
BrowserLink => 2b949cc1ffa4e91b98be2e01a4278f4d70b4e1f5
Caching => d073ffbccc946cd4913d433a9769bf5ad541944b
Common => 589c79b2a0efa18ed3368c26f75d3df1c78b857b
Configuration => 4b03172691e41a04f3ca906536a8000582a68964
CORS => 302f687487
DataProtection => 2323298667
DependencyInjection => b5a440897f54ce08b78cdf5c23b056ca768cdc55
Diagnostics => 93dbe3635d
DotNetTools => 52c688c4cd
EntityFrameworkCore => 5aae6e33b2978897a51f76675e3565582366283e
EventNotification => c97c109ff73a03604147d8d039da2a7dea6503f9
FileSystem => e43b4649625d83f03814d47c01562a255cce34ef
Hosting => 86989413f6
HtmlAbstractions => a7219e0c5c
HttpAbstractions => 3e99312192
HttpClientFactory => 3a68c1875246474a4b73099bdf7370cd4388ff6d
HttpSysServer => c4904acdda
Identity => 5c8d419b0c
IISIntegration => 2ed691a960
JavaScriptServices => f35c814fc7
JsonPatch => 829db1aae5
KestrelHttpServer => a5f78264f4
Localization => 1ab0584db2
Logging => 13a401e70145a8751b1709e2e27e8e95338a67ce
MetaPackages => 381f3a7414
Microsoft.Data.Sqlite => 2b0794eae2e4d6fbf9082cc09829a09e7fbfbece
MusicStore => d7bb4b0c5c
Mvc => 4921bcf7b4
MvcPrecompilation => a40b40bc42
Options => fe5b409e31522bdd370c47aaa34715349ddb4dca
Proxy => 2261bd8483b554e4cf1c0a8be9208cf6a3f50868
Razor => 8653225b0c
ResponseCaching => c749fd0a80
Routing => c5c10b5ed1
Scaffolding => da503e07d759fd9522694f7f8dafef543730fdb4
Security => 088dc56f3d
ServerTests => 151b58bd77
Session => 130b3e7e58
SignalR => 5dd6543d15
StaticFiles => 8113ef5d86
Templating => 7e43fae45d
Testing => c65513746d0dcfbc017489cb9ef5ddbb72bb7a98
WebHooks => bf5f4e273cc1c51e71df2c981667cb0b3b2248f7
WebSockets => f173f3f08f

[auto-updated: submodules]
2018-01-31 16:16:22 -08:00
.vscode Update publish to include more metadata in the manifest (#826) 2018-01-30 13:36:39 -08:00
build Use PackageVersion to set the name of the debian installers, not Version 2018-01-31 10:06:12 -08:00
docs
modules Updating submodule(s) 2018-01-31 16:16:22 -08:00
scripts Add script to batch update travis and appveyor yml files (#834) [ci skip] 2018-01-31 14:57:59 -08:00
src Update metapackages 2018-01-29 17:40:19 -08:00
.appveyor.yml
.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
.travis.yml
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md
build.cmd
build.sh
korebuild-lock.txt Updating BuildTools from 2.1.0-preview1-1009 to 2.1.0-preview1-1010 2018-01-30 14:15:31 -08:00
korebuild.json Add script to batch update travis and appveyor yml files (#834) [ci skip] 2018-01-31 14:57:59 -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 Update versions to include prodcon build id (#819) 2018-01-30 10:38:09 -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)
Installer (exe)
Archive (zip)
Windows (x86)
Installer (exe)
Archive (zip)
macOS (x64)
Archive (tar.gz)
Linux (x64)
Archive (tar.gz)
Debian/Ubuntu (x64)
Installer (deb)
RedHat/Fedora (x64)
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.