Go to file
Nate McMaster c6b33af81f
Updating submodule(s)
AADIntegration => 28e8127658
Antiforgery => 9298193d70
AuthSamples => 6882459a24
AzureIntegration => 218ea6f303
BasicMiddleware => f320511b63
BrowserLink => be187f6810026b6e726e423bca99fc90eaa6d73a
Caching => ee13d634568fc5348e09fc090fab40233b1107cc
Common => e0f40110ff5e2101231ba54d48961bbd60a07727
Configuration => d469707ab18eef7ed0002f00175a9ad5b0f36250
CORS => 8e4d3aacb3
DataProtection => a3484f4a90
DependencyInjection => 94b9cc9ace032f838e068702cc70ce57cc883bc7
Diagnostics => 0a9bb04a60
DotNetTools => 60041b5b2b
EntityFrameworkCore => e61d8f9879129df7745c933496b06ae7ab398ae7
EventNotification => 3223f3dd18150c1326390ec61d31a3af6b5d55a7
FileSystem => faf1f007208001988d30618eca934481ea61dcda
Hosting => f9d1458877
HtmlAbstractions => 10950eaf9a
HttpAbstractions => 07d115400e
HttpClientFactory => 0677ac9f1e3efeb7557291ed42c726c60bde9c93
HttpSysServer => eba2d7e380
Identity => c7276ce2f7
IISIntegration => 655457edd5
JavaScriptServices => 7a04134345
JsonPatch => 1a1b34194b
KestrelHttpServer => 2191327b59
Localization => 43b974482c
Logging => d9b34d1c36fde204bd736d09b89b86451bd82e95
MetaPackages => 1974ad2ccd
Microsoft.Data.Sqlite => 2f09c6b41405b84e8aca81be5eca378a6bd78a8c
MusicStore => fb78b5ae3e
Mvc => 4f1f97b5d5
MvcPrecompilation => 0e54b2488b
Options => 5b2e45db05b006364872961dc2a6589131d16388
Proxy => 3015029f5169b699dfa16bcf85cfc7ca0aaddae7
Razor => e49de3ea57
ResponseCaching => c1cb7576a0
Routing => fa47f6b92a
Scaffolding => 9efe0f7e05e51bb43c878be49087bdba7456e36d
Security => beaa2b443d
ServerTests => 221e959fc9
Session => 1869bd09fa
SignalR => 9f79c83159
StaticFiles => ebb70807f9
WebSockets => 56c5600b20

[auto-updated: submodules]
2018-06-29 17:02:24 -07:00
.github Add CODEOWNERS file (#1231) 2018-06-28 12:04:53 -07:00
.vscode
build Upgrade to .NET Core 3.0.0-preview1-26629-04 (#1240) 2018-06-29 16:27:55 -07:00
docs
modules Updating submodule(s) 2018-06-29 17:02:24 -07:00
scripts Update branding to 3.0.0-alpha1 2018-06-28 17:01:31 -07:00
src Upgrade to .NET Core 3.0.0-preview1-26629-04 (#1240) 2018-06-29 16:27:55 -07:00
test/SharedFx.UnitTests Upgrade to .NET Core 3.0.0-preview1-26629-04 (#1240) 2018-06-29 16:27:55 -07:00
.appveyor.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules
.travis.yml
CONTRIBUTING.md
Directory.Build.props Add unit tests for the shared framework 2018-06-08 10:33:31 -07:00
Directory.Build.targets Upgrade to .NET Core 3.0.0-preview1-26629-04 (#1240) 2018-06-29 16:27:55 -07:00
LICENSE.txt
Microsoft.AspNetCore.sln Add unit tests for the shared framework 2018-06-08 10:33:31 -07:00
NuGet.config
README.md
build.cmd
build.sh
dockerbuild.sh Fix tests on linux-musl-x64 2018-06-08 16:58:48 -07:00
korebuild-lock.txt Updating BuildTools from 2.2.0-preview1-17090 to 2.2.0-preview1-17091 2018-06-28 09:40:54 -07:00
korebuild.json Update KoreBuild channel to master 2018-06-29 16:52:59 -07:00
run.cmd
run.ps1 Update KoreBuild channel to master 2018-06-29 16:52:59 -07:00
run.sh Update KoreBuild channel to master 2018-06-29 16:52:59 -07:00
version.props Update branding to 3.0.0-alpha1 2018-06-28 17:01:31 -07: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.App
Microsoft.AspNetCore

Daily builds

NuGet packages

Packages can be found on https://dotnet.myget.org/gallery/dotnet-core. This feed may include packages that will not be supported in a officially released build.

Commonly referenced packages:

Package MyGet
Microsoft.AspNetCore.App
Microsoft.AspNetCore

ASP.NET Core Shared Framework

Platform Latest (dev branch)
release/2.1
Channel name1 master 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)
(for glibc based OS - most common)
Archive (tar.gz) Archive (tar.gz)
Linux (x64 - musl)
(for musl based OS, such as Alpine Linux)
Archive (tar.gz) Archive (tar.gz)
Linux (arm32) Archive (tar.gz) Archive (tar.gz)
Debian/Ubuntu (x64) Installer (deb) Installer (deb)
RedHat/Fedora (x64) Installer (rpm) Installer (rpm)

1 For use with the -Channel argument in dotnet-install.ps1/sh.

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.