teamcity如何在客户端机器上构建项目以及msdeploy的要求
只是想知道 msbuild 是在 teamcity 中构建的还是 teamcity 使用构建计算机上安装的 msbuild.exe。我的构建机器上没有安装 Visual Studio。如果没有安装 Visual Studio,那么对于在计算机上找到 msbuild.exe 的位置有点困惑。 还有客户端计算机上 msdeploy 的要求。请澄清。
Just want to know whether msbuild is built in teamcity or teamcity uses the installed msbuild.exe on your build machine. I have no visual studio installed on my build machine. Little bit confused as where to locate msbuild.exe on machine if no visual studio installed.
Also requirements of msdeploy on client machine. Plz clarify.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TeamCity 不提供任何语言的编译器,只是提供将这些工具整合在一起的集成支持。特别是对于 MSBuild,您将需要安装 .NET 框架,或 Visual Studio:
或者,您可以利用 TeamCity 提供的 Mono 支持 来实现这一目标。
TeamCity does not provide the compilers for any language, just the integration support to bring those tools together. For MSBuild specifically, you'll need the .NET framework installed, or Visual Studio:
Alternatively, you can make use of the Mono support that TeamCity provides to go down that road.