Msbuild 打包问题
目前我正在开发一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来是在 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.