MSBuild 如何检测它正在哪个服务器上运行?

发布于 2024-08-18 15:55:44 字数 164 浏览 2 评论 0原文

我希望我的 MSbuild 构建脚本能够检测它正在哪个服务器上运行,如果它是本地开发人员计算机,则运行在本地计算机上安装结果的目标,如果它在构建服务器上运行,则运行安装在远程登台服务器上的目标。

实现这一目标的最佳策略是什么?

我们使用 TeamCity 作为我们的 CI 服务器。

I would like my MSbuild build script to be able to detect which server it is running on, if it is a local developers machine then run the targets that install the results on the local machine, if it is running on the build server then run the target that installs on the remote staging server.

What is the best strategy to achieve this?

We use TeamCity as our CI server.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

太阳公公是暖光 2024-08-25 15:55:44

我们所做的是在命令行上传递一个服务器属性,用于在本地计算机上安装的 dev 或要发布到的服务器名称(如果在构建服务器上)。这是我们能弄清楚的唯一方法。

What we do is have a server property we pass on the command line, dev for installing on the local machine, or the name of the server(s) to publish to if on the build server. This was the only way we could figure out.

若相惜即相离 2024-08-25 15:55:44

您是否检查过 MSBuild 社区任务 上的 ServiceController?

have you checked the ServiceController at MSBuild Community Tasks?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文