Skip to content

Latest commit

 

History

History
72 lines (49 loc) · 6.53 KB

README.md

File metadata and controls

72 lines (49 loc) · 6.53 KB

.NET Core Build Scripts

Join the chat at https://gitter.im/dotnet/source-build

OS Azure DevOps
Release
CentOS7.1 Build Status
CentOS7.1 (Online) Build Status
CentOS7.1 (Offline) Build Status
CentOS7.1 (Offline Portable) Build Status
Debian8.2 Build Status
Debian8.2 (Online) Build Status
Fedora29 Build Status
Fedora29 (Online) Build Status
Fedora29 (Offline) Build Status
Fedora29 (Offline Portable) Build Status
OSX Build Status
Ubuntu16.04 Build Status
Windows Build Status

This repository contains a set of scripts for building the .NET Core Runtime and SDK from source. The scripts were built to make it easy for anyone to build the .NET Core product.

You can use these scripts to build the .NET Core product for Windows, macOS or Linux. See Documentation for complete instructions.

Using the Scripts

The scripts are supported on Windows, macOS and Linux. The scripts are based on PowerShell on Windows and Bash on macOS and Linux. Currently, Windows scripts only build through core-setup and do not build the complete SDK.

If you are building on Windows or OSX, building is possible via Docker. (https://hub.docker.com/r/microsoft/dotnet/)

Build on Windows

./build.ps1

Build on Linux or macOS

./build.sh

Script Users

The most common users are expected to be:

  • .NET Core contributors.
  • Linux distribution maintainers.
  • Cloud service developers.

You do not have to build the entire product to contribute to .NET Core. Often, you only need to build a single binary to test a change. There are some scenarios where building the whole product is useful, such as adding and testing a feature that requires changes to multiple repos.

What the Scripts Do

The scripts can be thought of as solving challenges that would otherwise making building the whole product difficult. The following challenges are the primary ones that developers often hit before these scripts were available.

  • .NET Core is composed of several repositories that all need to be built.
  • The .NET Core SDK generated by the build requires a specific layout in order to correctly function.
  • Most of the product is written in managed code and requires the .NET Core SDK to build. This approach is a great use of the product, but presents a boot-strapping problem for the build.

Goals

Many Linux distributions have specific rules for official packages. The rules can be summarized as two main rules: source for everything, and consistent reproducibility.

A key goal of this repository was to satisfy the official packaging rules of commonly used Linux distributions, such as Fedora and Debian.

License

This repo is licensed with MIT.