I am new to CruiseControl.Net but have spent a couple of days setting up a CCNet 1.5 server and it is almost working but there is a problem which I am struggling to understand.
We use Team Foundation Server 2010 for source control so I have configured the ccnet.config file to connect to it. Whenever I try to force a build It ends with the following error:
error MSB1009: Project file does not exist.
Switch: app.sln
When I look at the working directory on the file system I can see that all of the files for the project have been grabbed from source control apart from the solution (.sln) file. I have tried this with several different projects and get the same result each time. I have tried searching the server for the app.sln file but it is not on the server, so for some reason it is not being grabbed from source control. All other files appear to be fine, including the project (.csproj) files.
If I checkout the solution on the same server using Visual Studio 2010 then it works fine and I get all of the files including the .sln file. So it appears that something related to CCNet is filtering the sln files during the get source part of the build.
Here is an example of the XML from my ccnet.config file:
<cruisecontrol xmlns:cb = "urn:ccnet.config.builder">
<project name = "projectone">
<sourcecontrol type = "filtered">
<sourceControlProvider type = "vsts" autoGetSource = "true" applyLabel = "true">
<server>http://servername:8080/tfs/collectionname</server>
<username>user</username>
<password>password</password>
<domain>DOMAIN</domain>
<project>$/projectname/appname</project>
<workingDirectory>C:\projects\appname</workingDirectory>
<workspace>[SERVER_NAME]</workspace>
<deleteWorkspace>false</deleteWorkspace>
</sourceControlProvider>
<exclusionFilters>
<userFilter>
<names>
<name>admin</name>
</names>
</userFilter>
</exclusionFilters>
</sourcecontrol>
<tasks>
<msbuild>
<executable>C:\Windows\Microsoft.NET\Framework\v3.5\MSBuild.exe</executable>
<workingDirectory>C:\projects\appname</workingDirectory>
<projectFile>app.sln</projectFile>
<buildArgs>/p:Configuration=Debug /v:diag</buildArgs>
<targets>Build</targets>
<timeout>900</timeout>
<logger>c:\Program Files\CruiseControl.NET\server\Rodemeyer.MsBuildToCCNet.dll</logger>
</msbuild>
</tasks>
<publishers>
<xmllogger/>
<statistics/>
<modificationHistory onlyLogWhenChangesFound = "true"/>
</publishers>
</project>
</cruisecontrol>
TFS2010 and CCNet 1.5 are on the same server and for the time being are both using a domain admin account, so security shouldn't really be an issue here.
Any suggestions would be gratefully received.