我試圖使用msbuild從我的Subversion存儲庫獲取我的代碼的最新版本。我試圖使用msbuild community tasks,特別是svn任務來拉下我的代碼的最新版本。我不能確定哪一個任務(S)我需要使用來實現這一(SvnClient,SvnUpdate)msbuild和subversion
目前我的MSBuild目標看起來像這樣
<Target Name="GetLatestFromSVN">
<SvnClient
RepositoryPath="https://mySvnRepositorytrunk/src/current"
ToolPath="C:\Program Files\Subversion\bin"
Username="Username"
Password="password"
LocalPath="$(BuildRootPath)\src">
</SvnClient>
</Target>
林不確定什麼命令參數應該是還是我應該完全使用SvnClient任務。誰能幫忙?
請問你在做什麼?你知道「持續集成」服務器及其目的嗎? – 2009-09-30 12:50:02