Where is MSBuild.exe installed on Windows when installing using BuildTools_Full.exe?

I am trying to configure the build server for .NET, but cannot determine where MSBuild.exe is installed.

I am trying to install MSBuild using Microsoft Build Tools 2013: https://www.microsoft.com/en-us/download/details.aspx?id=40760

+18
source share
2 answers

MSBuild in previous versions of the .NET Framework was installed with it, but they decided to install it with Visual Studio or with the BuildTools_Full.exe package.

The path to MSBuild when installing with the .NET platform:

C: \ Windows \ Microsoft.NET \ Framework [64 or empty] [framework_version]

The path to MSBuild when installing with Visual Studio:

C:\Program Files (x86)\MSBuild[version]\Bin for x86 and, C:\Program Files (x86)\MSBuild[version]\Bin\amd64 for x64.

BuildTools_Full.exe , MSBuild Visual Studio.

+22

https://docs.microsoft.com/en-us/visualstudio/msbuild/what-s-new-in-msbuild-15-0

MSBuild Visual Studio. , C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild. PowerShell MSBuild: vssetup.powershell.

MSBuild . MSBuild NuGet.

+20

All Articles