使用 BuildTools_Full.exe 安装时,MSBuild.exe 安装在 Windows 的什么位置?

Where is MSBuild.exe installed in Windows when installed using BuildTools_Full.exe?(使用 BuildTools_Full.exe 安装时,MSBuild.exe 安装在 Windows 的什么位置?)
本文介绍了使用 BuildTools_Full.exe 安装时,MSBuild.exe 安装在 Windows 的什么位置?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在尝试为 .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.

这篇关于使用 BuildTools_Full.exe 安装时,MSBuild.exe 安装在 Windows 的什么位置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

MSBuild cannot find a reference(MSBuild 找不到参考)
The reference assemblies for framework .NETCore, Version=v5.0 were not found(未找到框架 .NETCore,Version=v5.0 的参考程序集)
quot;File has a different computed hash than specified in manifestquot; error when signing the EXE(“文件的计算哈希值与清单中指定的不同签署EXE时出错)
Good-practices: How to reuse .csproj and .sln files to create your MSBuild script for CI?(良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 MSBuild 脚本?)
Run an MSBuild target only if project is actually built(仅在实际构建项目时运行 MSBuild 目标)
MS-Build BeforeBuild not firing(MS-Build BeforeBuild 未触发)