The Wayback Machine - https://web.archive.org/web/20190531132006/https://github.com/microsoft/msbuild
Skip to content
The Microsoft Build Engine (MSBuild) is the build platform for .NET and Visual Studio.
Branch: master
Clone or download
cdmihai Make TF normalization explicit (#4298)
* Make TF normalization explicit
Latest commit c70d6de May 30, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Copy code-of-conduct information to GitHub path Mar 19, 2018
branding Initial commit of branding (#941) Aug 24, 2016
documentation Merge pull request #4280 from BenVillalobos/wiki-update May 28, 2019
eng Update dependencies from https://github.com/dotnet/arcade build 20190… May 25, 2019
ref Merge pull request #4316 from rainersigwald/ignore-new-attribute May 6, 2019
scripts Enumerate MSBuild from Current (#4281) Apr 3, 2019
src Make TF normalization explicit (#4298) May 30, 2019
.editorconfig Added editorconfig properties from corefx Mar 20, 2015
.gitattributes Add GetFileHash and VerifyFileHash tasks (#3398) Jun 13, 2018
.gitignore Use Arcade VS IBC Training Feb 5, 2019
.vsts-dotnet-ci.yml Update dependencies from dotnet/arcade (#4297) May 10, 2019
.vsts-dotnet.yml Use d16.2stg as optprof source branch May 10, 2019
CompatBaseline.txt Update CompatBaseline to reflect Update 1 changes Oct 26, 2015
Directory.Build.props Fixing the MachineIndependent solution configuration to use the proje… Mar 5, 2019
Directory.Build.rsp Add Directory.Build.rsp Jan 25, 2018
Directory.Build.targets Set copyright and package license (#4191) Feb 21, 2019
LICENSE [master] Update dependencies from dotnet/arcade (#4251) Mar 20, 2019
MSBuild.Dev.sln Fixing the MachineIndependent solution configuration to use the proje… Mar 5, 2019
MSBuild.SourceBuild.sln Fixing the MachineIndependent solution configuration to use the proje… Mar 5, 2019
MSBuild.sln Fixing the MachineIndependent solution configuration to use the proje… Mar 5, 2019
NuGet.config Renamed NuGet.Config to NuGet.config and add the dotnet-core feed. Dec 18, 2018
PublishToBlob.proj Enable manifest generation for msbuild (#2896) Jan 23, 2018
README.md Update dependencies from dotnet/arcade (#4297) May 10, 2019
RunApiPort.bat Add the rest of the product assemblies to RunApiPort, fix them so the… Aug 14, 2015
THIRDPARTYNOTICES.txt Update third party notice to include Samples for xUnit.net notice Feb 1, 2018
build.cmd Using ProjectToBuild in Build.props to select sln file to build inste… Dec 18, 2018
build.sh Using ProjectToBuild in Build.props to select sln file to build inste… Dec 18, 2018
global.json Update dependencies from https://github.com/dotnet/arcade build 20190… May 25, 2019
netci.groovy add flag to use stage 2 Aug 30, 2018
runApiCompat.bat Add Microsoft.Build.Tasks.Core to ApiCompat Sep 11, 2015

README.md

Microsoft.Build (MSBuild)

The Microsoft Build Engine is a platform for building applications. This engine, which is also known as MSBuild, provides an XML schema for a project file that controls how the build platform processes and builds software. Visual Studio uses MSBuild, but MSBuild does not depend on Visual Studio. By invoking msbuild.exe on your project or solution file, you can orchestrate and build products in environments where Visual Studio isn't installed.

For more information on MSBuild, see the MSBuild documentation on docs.microsoft.com.

Build Status

The current development branch is master. Changes in master will go into a future update of MSBuild, which will release with Visual Studio 16.2.

Build Status

We have forked for MSBuild 16.1 in the branch vs16.1. Changes to that branch need special approval.

Build Status

MSBuild 16.0 builds from the branch vs16.0. Only high-priority bugfixes will be considered for servicing 16.0.

Build Status

MSBuild 15.9 builds from the branch vs15.9. Only very-high-priority bugfixes will be considered for servicing 15.9.

Runtime\OS Windows Ubuntu 16.04 Mac OS X
Full Framework Build Status N/A N/A
.NET Core Build Status Build Status Build Status

Source code

  • Clone the sources: git clone https://github.com/Microsoft/msbuild.git

Building

Building MSBuild with Visual Studio 2019

For the full supported experience, you will need to have Visual Studio 2019 or higher.

To get started on Visual Studio 2019:

  1. Install Visual Studio 2019. Select the following Workloads:
  • .NET desktop development
  • .NET Core cross-platform development
  1. Install the .NET Core 2.1 SDK.
  2. Clone the source code (see above).
  3. Open a Developer Command Prompt for VS 2019 prompt.
  4. Build the code using the build.cmd script at the root of the repo. This also restores packages needed to open the projects in Visual Studio.
  5. Open MSBuild.sln or MSBuild.Dev.sln in Visual Studio 2019.

Note: To produce a "bootstrap" build, run .\build.cmd /p:CreateBootstrap=true.

Building MSBuild in Unix (Mac & Linux)

MSBuild can be run on Unix systems that support .NET Core. Set-up instructions can be viewed on the wiki: Building Testing and Debugging on .Net Core MSBuild

Localization

You can turn on localized builds via the /p:LocalizedBuild=true command line argument. For more information on localized builds and how to make contributions to MSBuild's translations, see our localization documentation

How to Engage, Contribute and Provide Feedback

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Getting Started

Before you contribute, please read through the contributing and developer guides to get an idea of what kinds of pull requests we will or won't accept.

Looking for something to work on? This list of up for grabs issues is a great place to start.

You are also encouraged to start a discussion by filing an issue or creating a gist.

MSBuild Components

  • MSBuild. Microsoft.Build.CommandLine is the entrypoint for the Microsoft Build Engine (MSBuild.exe).

  • Microsoft.Build. The Microsoft.Build namespaces contain types that provide programmatic access to, and control of, the MSBuild engine.

  • Microsoft.Build.Framework. The Microsoft.Build.Framework namespace contains the types that define how tasks and loggers interact with the MSBuild engine. For additional information on this component, see our Microsoft.Build.Framework wiki page.

  • Microsoft.Build.Tasks. The Microsoft.Build.Tasks namespace contains the implementation of all tasks shipping with MSBuild.

  • Microsoft.Build.Utilities. The Microsoft.Build.Utilities namespace provides helper classes that you can use to create your own MSBuild loggers and tasks.

License

MSBuild is licensed under the MIT license.

You can’t perform that action at this time.