Go to file
ASP.NET CI febcd2d75d Updating submodule(s)
Antiforgery => 35784501ec
AuthSamples => f1cff73d26
AzureIntegration => c45ea5e555
BasicMiddleware => 5a3f9d9303
BrowserLink => 0b7342b4ec4fe397e9d591079a45c44f3e077be9
Caching => e684134f05fa824839d14de30455c8690fb6ac02
Common => 4d7e1ff47ad5a082fbd0f86adc0e6db0eeca25a1
Configuration => 2d68e24422f8bf5e9d23be8178cd66f8cea62094
CORS => 308994481a
DataProtection => 99165207bb
DependencyInjection => d3a42f198c2e6e8a522bcfe4526f56ea598e0bd1
Diagnostics => 5631890597
DotNetTools => f14799c4ae
EntityFrameworkCore => 6ca7674b0cee26b53ae58eb7d9009cb0fb847a0a
EventNotification => 2b4fb6829ace4abdcdd1bf50c3162616bb612cf7
FileSystem => 9f8f03bf2511fe53a2c9334c436d8b88993f1122
Hosting => 99c742221f
HtmlAbstractions => fbfafa06ce
HttpAbstractions => f152b9863a
HttpClientFactory => 7fbcba9fe8e517105e827d4b0b31452d19c596da
HttpSysServer => 7d37e938d4
IISIntegration => 6c0b100abe
JavaScriptServices => d6b67ca75d
JsonPatch => 55169b1c92
KestrelHttpServer => b0673337e9
Localization => bdbb584d9c
Logging => 5a906a4e8492f709d25a2f7cc737da2915771d44
MetaPackages => 404f183600
Microsoft.Data.Sqlite => 6cdc92eb9612211cfab7273e9dc435d7de63f9c3
MusicStore => 68bb45bfb9
Mvc => d40c60d15b
MvcPrecompilation => 8dfb60cbc4
Options => 1d8770ae964c966ec0068a65aac4a4a227e9e074
Proxy => a2c78d969d0fde2fdb143d67b39e716e9b6ce9bc
Razor => 19ec125880
ResponseCaching => 606577778a
Routing => 2efc4362b1
Scaffolding => 34bff5398775185f9b65d145e7cb0cb8aeda5a8f
Security => 5de25bb11c
ServerTests => 79a74aa227
Session => 9a1191e22e
SignalR => 0159b53e5e
StaticFiles => 8b7b1b6732
Templating => 4f9b7c611a
Testing => 164b33d86a20319f32001230a0e902695cd7e97b

[auto-updated: submodules]
2018-02-11 12:56:35 -08:00
.vscode Update publish to include more metadata in the manifest (#826) 2018-01-30 13:36:39 -08:00
build Remove Buffers.Primitives as Private 2018-02-10 13:14:06 -08:00
docs
modules Updating submodule(s) 2018-02-11 12:56:35 -08:00
scripts Merge branch 'release/2.1' into dev 2018-02-01 10:40:07 -08:00
src Merge branch 'release/2.1' into dev 2018-02-01 15:01:46 -08:00
.appveyor.yml Run more checks on Universe PRs 2018-01-30 13:03:42 -08:00
.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 Merge remote-tracking branch 'origin/release/2.1' into dev 2018-01-25 11:03:00 -08:00
.travis.yml Run more checks on Universe PRs 2018-01-30 13:03:42 -08:00
CONTRIBUTING.md
LICENSE.txt
NuGet.config
README.md Update README.md with links to release/2.1 installers [ci skip] (#83 2018-01-31 10:24:13 -08:00
build.cmd
build.sh
korebuild-lock.txt Updating BuildTools from 2.1.0-preview2-15697 to 2.1.0-preview2-15698 2018-02-07 11:28:35 -08:00
korebuild.json Fix #785 - publish nuget packages and the shared runtime at the same time 2018-02-07 14:40:08 -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 Ensure experimental version suffix contains the build number 2018-02-08 08:25:00 -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)
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) Archive (tar.gz) Archive (tar.gz)
Debian/Ubuntu (x64) Installer (deb) Installer (deb)
RedHat/Fedora (x64) Installer (rpm) 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.