构建部署包和msbuild t:包之间的区别

时间:2012-02-25 18:26:00

标签: visual-studio-2010 msbuild manifest msdeploy web-deployment-project

我正在尝试完成自动部署过程,请参阅this question for further info并且它已关闭。我可以在VS2010中右键单击我的MVC项目并选择“Build deployment package”并成功构建它,这将部署到远程服务器。当我运行以下命令时,构建失败:

C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe mvcproject.csproj /T:Package /p:Configuration=Deployment

我得到的错误是:

MSDEPLOY : error : Object of type 'manifest' and path 'C:\hoh_code\GIT\ai-poker- project\Packages\Deployment\PokerLeague
WebSite\PokerLeagueWebSite.SourceManifest.xml' cannot be created. [C:\hoh_code\GIT\ai-poker-project\Clients\PokerLeague
WebSite\PokerLeagueWebSite.csproj]
MSDEPLOY : error : One or more entries in the manifest 'sitemanifest' are not valid. [C:\hoh_code\GIT\ai-poker-project\
Clients\PokerLeagueWebSite\PokerLeagueWebSite.csproj]
MSDEPLOY : error : An error occurred when reading the IIS Configuration File 'MACHINE/REDIRECTION'. The identity perfor
ming the operation was 'wiggly\Jon'. [C:\hoh_code\GIT\ai-poker-project\Clients\PokerLeagueWebSite\PokerLeagueWebSite.cs
proj]
MSDEPLOY : error : Filename: \\?\C:\Windows\system32\inetsrv\config\redirection.config [C:\hoh_code\GIT\ai-poker-projec
t\Clients\PokerLeagueWebSite\PokerLeagueWebSite.csproj]
MSDEPLOY : error : Cannot read configuration file due to insufficient permissions [C:\hoh_code\GIT\ai-poker-project\Cli
ents\PokerLeagueWebSite\PokerLeagueWebSite.csproj]

我的印象是我正在做的右键单击与msbuild命令相同。我尝试将输出级别设置为详细但无法看到正确触发它的命令(尽管可能没有看到树的木材)。

我的问题是,我该怎样做才能通过命令行来构建项目,这样我就可以在我的CI服务器上构建它(没有VS2010),这样它就可以自动部署,为什么VS2010会成功什么时候命令行失败?

1 个答案:

答案 0 :(得分:1)

  

错误:由于权限不足,无法读取配置文件

从提升的命令提示符运行msbuild以避免此错误。用于提升Visual Studio的相同过程。或者更改构建文件夹的权限,这样就不需要了。