How to resolve "Only one project can be specified" error from <msbuild> task in CruiseControl.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T18:48:37Z http://stackoverflow.com/feeds/question/469330 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/469330/how-to-resolve-only-one-project-can-be-specified-error-from-msbuild-task-in-c 3 How to resolve "Only one project can be specified" error from <msbuild> task in CruiseControl.NET Jeff Stong 2009-01-22T14:28:47Z 2009-01-22T20:22:53Z <p>I'm trying to use the task in CruiseControl.NET version 1.3.0.2918 with a rather straight forward :</p> <pre><code> &lt;project name="AppBuilder 1.0 (Debug)"&gt; &lt;workingDirectory&gt;c:\depot\AppBuilder\1.0\&lt;/workingDirectory&gt; &lt;triggers/&gt; &lt;tasks&gt; &lt;msbuild/&gt; &lt;/tasks&gt; &lt;/project&gt; </code></pre> <p>However, when the project is run it fails with this information in the build log:</p> <blockquote> <p>MSBUILD : error MSB1008: Only one project can be specified. Switch: 1.0</p> <p>For switch syntax, type "MSBuild /help"</p> </blockquote> <p>When I look at the ccnet.log file I find this:</p> <blockquote> <p>Starting process [C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe] in working directory [c:\depot\AppBuilder\1.0] with arguments [/nologo "/p:CCNetArtifactDirectory=C:\Program Files\CruiseControl.NET\server\AppBuilder 1.0 (Debug)\Artifacts;CCNetBuildCondition=ForceBuild;CCNetBuildDate=2009-01-22;CCNetBuildTime=09:25:55;CCNetIntegrationStatus=Unknown;CCNetLabel=3; CCNetLastIntegrationStatus=Failure;CCNetNumericLabel=3;CCNetProject=AppBuilder 1.0 (Debug);CCNetProjectUrl=<a href="http://CISERVER01/ccnet;CCNetRequestSource=jstong" rel="nofollow">http://CISERVER01/ccnet;CCNetRequestSource=jstong</a>; CCNetWorkingDirectory=c:\depot\AppBuilder\1.0\" "/l:ThoughtWorks.CruiseControl.MsBuild.XmlLogger,ThoughtWorks.CruiseControl.MsBuild.dll;C:\Program Files\CruiseControl.NET\server\AppBuilder 1.0 (Debug)\Artifacts\msbuild-results.xml"]</p> </blockquote> <p>from which I infer that msbuild was run in the correct working directory and that the command line passed to it was: </p> <blockquote> <p>/nologo "/p:CCNetArtifactDirectory=C:\Program Files\CruiseControl.NET\server\AppBuilder 1.0 (Debug)\Artifacts;CCNetBuildCondition=ForceBuild;CCNetBuildDate=2009-01-22;CCNetBuildTime=09:25:55;CCNetIntegrationStatus=Unknown;CCNetLabel=3; CCNetLastIntegrationStatus=Failure;CCNetNumericLabel=3;CCNetProject=AppBuilder 1.0 (Debug);CCNetProjectUrl=<a href="http://CISERVER01/ccnet;CCNetRequestSource=jstong" rel="nofollow">http://CISERVER01/ccnet;CCNetRequestSource=jstong</a>; CCNetWorkingDirectory=c:\depot\AppBuilder\1.0\" "/l:ThoughtWorks.CruiseControl.MsBuild.XmlLogger,ThoughtWorks.CruiseControl.MsBuild.dll;C:\Program Files\CruiseControl.NET\server\AppBuilder 1.0 (Debug)\Artifacts\msbuild-results.xml"</p> </blockquote> <p>If I run this manually at the command line I get a similiar error.</p> <p>It appears to me that the isn't passing the correct command line to the MSBuild executable.</p> <p>Can you spot my error? Or is this version of CruiseControl.NET (1.3.0.2918) broken with respect to the task? </p> http://stackoverflow.com/questions/469330/how-to-resolve-only-one-project-can-be-specified-error-from-msbuild-task-in-c/469352#469352 3 Answer by ocdecio for How to resolve "Only one project can be specified" error from <msbuild> task in CruiseControl.NET ocdecio 2009-01-22T14:34:04Z 2009-01-22T14:34:04Z <p>Why is your msbuild tag empty? It should be something similar to:</p> <pre><code>&lt;msbuild&gt; &lt;executable&gt;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe&lt;/executable&gt; &lt;workingDirectory&gt;C:\dev\ccnet&lt;/workingDirectory&gt; &lt;projectFile&gt;CCNet.sln&lt;/projectFile&gt; &lt;buildArgs&gt;/noconsolelogger /p:Configuration=Debug /v:diag&lt;/buildArgs&gt; &lt;targets&gt;Build;Test&lt;/targets&gt; &lt;timeout&gt;900&lt;/timeout&gt; &lt;logger&gt;C:\Program Files\CruiseControl.NET\server\ThoughtWorks.CruiseControl.MsBuild.dll&lt;/logger&gt; &lt;/msbuild&gt; </code></pre> http://stackoverflow.com/questions/469330/how-to-resolve-only-one-project-can-be-specified-error-from-msbuild-task-in-c/470415#470415 0 Answer by Alex for How to resolve "Only one project can be specified" error from <msbuild> task in CruiseControl.NET Alex 2009-01-22T19:07:58Z 2009-01-22T19:07:58Z <p>Without more detail since you don't appear to be specifying a project/solution file which leaves MSBuild assuming one. If you have more than one file that MSBuild is able to use as a project file in that directory that might be causing your issue.DO you have an MSbuild .proj and a .sln file by any chance? Or two solution files?</p> http://stackoverflow.com/questions/469330/how-to-resolve-only-one-project-can-be-specified-error-from-msbuild-task-in-c/470659#470659 4 Answer by Alex for How to resolve "Only one project can be specified" error from <msbuild> task in CruiseControl.NET Alex 2009-01-22T20:22:53Z 2009-01-22T20:22:53Z <p>I think maybe it is your space in the artifact directory path. MSBuild really does not like spaces as it considers it a break between arguments. Can you try an remove the space from that path and see what happens?</p>