0
我剛剛開始使用CruiseControl .NET(使用Manning持續集成書剛剛出來),我遇到了配置文件的問題。CruiseControl.NET - 未使用注 - <trunkURL>?
我收到錯誤:<trunkURL>
標記上的「未使用的節點」。
(稍微清理一下,使用[]作爲佔位符)配置文件如下。任何人都能發現我的錯誤?我在想/希望這很簡單。
<cruisecontrol xmlns:cb="urn:ccnet.config.builder">
<!-- This is your CruiseControl.NET Server Configuration file. Add your projects below! -->
<project name="Build[Project]Lib">
<workingDirectory>F:\CI\Build[Project]Lib\</workingDirectory>
<artifactDirectory>F:\CI\Artifacts.Build[Project]Lib</artifactDirectory>
<webURL>http://localhost/ccnet</webURL>
<triggers>
<intervalTrigger initialSeconds="0" />
</triggers>
<sourcecontrol type="svn">
<executable>C:\Program Files\CollabNet\Svn\svn.exe</executable>
<trunkURL>https://localhost:443/svn/[Solution]/trunk/src/[Project].Lib/</trunkURL>
<username>buildmaster</username>
<password>[Password]</password>
</sourcecontrol>
<tasks>
<msbuild>
<executable>C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe</executable>
<projectFile>[Project].Lib.csproj</projectFile>
<buildArgs>
/p:Configuration=Release /verbosity:minimal
</buildArgs>
<logger>F:\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MSBuild.dll</logger>
</msbuild>
</tasks>
</project>
在此先感謝您的幫助!
一切順利, 肖恩