0
私はCruiseControl .NET(ちょうど出てきたManning Continuous Integrationブックを使用しています)を使い始めましたが、設定ファイルに問題があります。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>
ご協力いただきありがとうございます。
すべてのベスト、 ショーン