Where is MSBuild.exe installed in Windows when installed using BuildTools_Full.exe?

后端 未结 4 524
失恋的感觉
失恋的感觉 2020-12-14 15:04

I\'m trying to set up a build server for .NET, but can\'t figure out where MSBuild.exe is installed.

I\'m trying to install MSBuild using the Microsoft Build Tools 2

4条回答
  •  难免孤独
    2020-12-14 15:22

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

    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.

    MSBuild is no longer installed in the Global Assembly Cache. To reference MSBuild programmatically, use NuGet packages.

提交回复
热议问题