The MicrosoftNETPlatformLibrary property instructs the .NET Core SDK to treat a particular package as the shared framework platform. This affects how the SDK will trim references and publish output, determines how the runtimeconfig files are generated, and may affect how optimizations are preformed by other tools. In some installations of .NET Core, the ASP.NET Core shared framework is not available. This change adds properties to let the SDK determine on which platforms ASP.NET Core is enabled. |
||
|---|---|---|
| .vscode | ||
| build | ||
| docs | ||
| modules | ||
| scripts | ||
| src | ||
| .appveyor.yml | ||
| .editorconfig | ||
| .gitattributes | ||
| .gitignore | ||
| .gitmodules | ||
| .travis.yml | ||
| CONTRIBUTING.md | ||
| LICENSE.txt | ||
| NuGet.config | ||
| README.md | ||
| build.cmd | ||
| build.sh | ||
| dockerbuild.sh | ||
| korebuild-lock.txt | ||
| 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.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 |
|---|---|---|
| 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) |
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.