Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

msbuild.exe location on windows 8 with VS2012

I'm trying to set up a Jenkins CI server to deploy a .NET 4.5 app but I cant for the life of me find the msbuild exe on my windows 8 machine running visual studio 2012. Any ideas?

like image 900
Tom Riley Avatar asked Jun 30 '13 20:06

Tom Riley


People also ask

Where is MSBuild exe installed?

With Visual Studio 2022, it's installed under the Visual Studio installation folder. For a typical default installation on Windows 10, MSBuild.exe is under the installation folder in MSBuild\Current\Bin.

Where is MSBuild 15 located?

MSBuild is now installed in a folder under each version of Visual Studio. For example, C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild. You can also use the following PowerShell module to locate MSBuild: vssetup. powershell.

Where do I find MSBuild version?

For example, the path to MSBuild.exe installed with Visual Studio 2022 Community is C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\MSBuild.exe You can also use the following PowerShell module to locate MSBuild: vssetup.


1 Answers

Make sure that you have installed the corresponding .Net framework. You can find the build.exe by following this sample path

C:\Windows\Microsoft.NET\Framework\v4.5\MSBuild.exe
like image 65
Manu Mohan Avatar answered Sep 30 '22 05:09

Manu Mohan