Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.93 KB

developer-guide.md

File metadata and controls

28 lines (19 loc) · 1.93 KB

Developer Guide

This guide provides instructions (mostly as links) on how to build the repo and implement improvements. It will expand over time.

Building the repository

The CoreCLR repo can be built from a regular, non-admin command prompt. The build produces CoreCLR (multiple native binaries), the mscorlib managed library and the accompanying tests. The repo can be built for the following platforms, using the provided instructions.

Chip Windows Linux OS X
x64
x86
ARM32
Instructions Instructions Instructions

The CoreCLR build and test suite is a work in progress, as are the building and testing instructions. The .NET Core team and the community are improving Linux and OS X support on a daily basis are and adding more tests for all platforms. See CoreCLR Issues to find out about specific work items or report issues.

Understanding the TFS-Git Mirror

The Microsoft team maintains a Microsoft-internal TFS server of CoreCLR. An automated system is used to flow changes in/out of GitHub. The mirroring infrastructure uses the following hint files to mirror a given TFS folder into GitHub and back:

  1. .gitmirror - any folder containing this file will only have its contained files mirrored. Subfolders are not mirrored.
  2. .gitmirrorall - any folder containing this file will have all of its files and subfolders mirrored recursively. The subfolders do not need to have any hint files.

Thus, if you add a new folder to be included as part of the CoreCLR build, it will also need to have one of the two hint files mentioned above.