问题描述
我正在尝试为 .net 设置构建服务器,但无法确定 msbuild.exe 的安装位置.
i'm trying to set up a build server for .net, but can't figure out where msbuild.exe is installed.
我正在尝试使用 microsoft build tools 2013 安装 msbuild:https://www.microsoft.com/en-us/download/details.aspx?id=40760
i'm trying to install msbuild using the microsoft build tools 2013: https://www.microsoft.com/en-us/download/details.aspx?id=40760
推荐答案
以前版本的.net framework中的msbuild已经安装了,但是他们决定用visual studio或者buildtools_full.exe包来安装.
msbuild in the previous versions of .net framework was installed with it but, they decided to install it with visual studio or with the package buildtools_full.exe.
p>
与 .net 框架一起安装时的 msbuild 路径:
the path to msbuild when installed with the .net framework:
c:windowsmicrosoft.netframework[64 或空][framework_version]
c:windowsmicrosoft.netframework[64 or empty][framework_version]
与 visual studio 一起安装时 msbuild 的路径是:
the path to msbuild when installed with visual studio is:
c:program files (x86)msbuild[version]bin for x86
c:program files (x86)msbuild[version]bin for x86
和
c:program files (x86)msbuild[version]binamd64 for x64.
c:program files (x86)msbuild[version]binamd64 for x64.
buildtools_full.exe 的安装路径与 msbuild 与 visual studio 安装时的路径相同.
the path when buildtools_full.exe is installed is the same as when msbuild is installed with visual studio.