Msbuild 打包问题

发布于 2024-12-27 12:40:08 字数 682 浏览 2 评论 0原文

目前我正在开发一个 mvc3 项目,我使用 msbuild 命令行工具来进行打包。

C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC>msbuild MVC-Client.csproj /t:package /P:Configuration=staging

在我的机器中,此命令成功执行并创建了一个可部署的包。在部署 bat 文件中,它具有以下 Web 部署配置。

MSDeployPath="C:\Program Files (x86)\IIS\**Microsoft Web Deploy V2**\"

但是当我尝试在构建服务器计算机(jenkings 服务器)中运行相同的 msbuild 命令时,它会使用以下 Web 部署配置创建不同的 bat 文件。

set MSDeployPath="C:\Program Files (x86)\IIS\Microsoft Web Deploy\"

在两台机器上我使用相同版本的 msbuild。我还在这些机器上安装了 msdeply1 和 msdeploy2。这可能是什么原因?我正在使用 Microsoft (R) Build Engine Version 4.0.30319.1 版本的 msbuild。

谢谢

Currently I am working on a mvc3 project and I use msbuild command line tool to do the packaging.

C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC>msbuild MVC-Client.csproj /t:package /P:Configuration=staging

In my machine this command executes successfully and it creates a deploy-able package.And in deploy bat file it has following web deployment configs.

MSDeployPath="C:\Program Files (x86)\IIS\**Microsoft Web Deploy V2**\"

And but when I am trying to run same msbuild command in my build server machine(jenkings server) it creates a different bat file with following web deployment configs.

set MSDeployPath="C:\Program Files (x86)\IIS\Microsoft Web Deploy\"

In both machines I use same version of msbuild. And also i have both msdeply1 and msdeploy2 installed in those machines. What could be the reason for this ? I am using Microsoft (R) Build Engine Version 4.0.30319.1 version of msbuild.

Thanks

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

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

发布评论

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

评论(1

∞梦里开花 2025-01-03 12:40:08

看来是在 Web 部署 v2 之后安装了 Web 部署 v1,请尝试在构建服务器上重新安装 Web 部署 v2。

It's seems that install web deploy v1 after Web deploy v2, try to reinstall Web Deploy v2 on your build server.

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