MSBuild: Specifying a target from the command line - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T00:02:22Z http://stackoverflow.com/feeds/question/232052 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/232052/msbuild-specifying-a-target-from-the-command-line 3 MSBuild: Specifying a target from the command line Derek 2008-10-24T00:07:38Z 2008-10-24T21:04:31Z <p>I have an MSBuild task to build a specific project in a solution file. It looks something like this:</p> <pre><code>&lt;Target Name="Baz"&gt; &lt;MSBuild Projects="Foo.sln" Targets="bar:$(BuildCmd)" /&gt; &lt;/Target&gt; </code></pre> <p>From the command line, I can set my <code>BuildCmd</code> to either <code>Rebuild</code> or <code>Clean</code> and it works as expected:</p> <blockquote> <p>msbuild /target:Baz /property:BuildCmd=Rebuild MyMsbuildFile.xml msbuild /target:Baz /property:BuildCmd=Clean MyMsbuildFile.xml</p> </blockquote> <p>But what word do I use to set <code>BuildCmd</code> to in order to just build? I've tried <code>Build</code> and <code>Compile</code> and just leaving it blank or undefined, but I always get an error.</p> <blockquote> <p>msbuild /target:Baz /property:BuildCmd=Build MyMsbuildFile.xml Foo.sln : error MSB4057: The target "bar:Build" does not exist in the project.</p> <p>msbuild /target:Baz /property:BuildCmd=Compile MyMsbuildFile.xml Foo.sln : error MSB4057: The target "bar:Compile" does not exist in the project.</p> <p>msbuild /target:Baz MyMsbuildFile.xml Foo.sln : error MSB4057: The target "bar:" does not exist in the project.</p> </blockquote> http://stackoverflow.com/questions/232052/msbuild-specifying-a-target-from-the-command-line/232119#232119 0 Answer by ripper234 for MSBuild: Specifying a target from the command line ripper234 2008-10-24T00:45:19Z 2008-10-24T00:45:19Z <p>Just edit the sln file yourself and find out - MSBuild is a real easy syntax, just look for targets.</p> http://stackoverflow.com/questions/232052/msbuild-specifying-a-target-from-the-command-line/232518#232518 1 Answer by Tim Stewart for MSBuild: Specifying a target from the command line Tim Stewart 2008-10-24T05:07:41Z 2008-10-24T05:07:41Z <p>From: <a href="http://msdn.microsoft.com/en-us/library/ms164311.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms164311.aspx</a></p> <p>/target:targets</p> <p>Builds these targets in this project. Use a semicolon or a comma to separate multiple targets, or specify each target separately. /t is also acceptable. For example: /target:Resources;Compile</p> http://stackoverflow.com/questions/232052/msbuild-specifying-a-target-from-the-command-line/233738#233738 0 Answer by CheGueVerra for MSBuild: Specifying a target from the command line CheGueVerra 2008-10-24T14:21:24Z 2008-10-24T14:21:24Z <p>I understood that you want to build a target with a specific command: Build, Clean, etc. </p> <p>This is how I would do it</p> <p>Create a property to receive your Build Command, when not specified defaults to Build</p> <pre><code>&lt;PropertyGroup&gt; &lt;BuildCmd Condition=" '$(BuildCmd)' == ''"&gt;Build&lt;/BuildCmd&gt; &lt;/PropertyGroup&gt; </code></pre> <p>After create the target that will start the MsBuild with the specified target in the parameter</p> <pre><code>&lt;Target Name="Stackoverflow"&gt; &lt;MsBuild Projects="Foo.sln" Targets="$(BuildCmd)" /&gt; &lt;/Target&gt; </code></pre> <p>Then call your MsBuild file with the target and BuildCmd parameter like so:</p> <pre><code>msbuild msbuild.xml /t:Stackoverflow /p:BuildCmd=Clean </code></pre> <p>Just make sure the target exists in the solution or project file.</p> http://stackoverflow.com/questions/232052/msbuild-specifying-a-target-from-the-command-line/235257#235257 0 Answer by Derek for MSBuild: Specifying a target from the command line Derek 2008-10-24T21:04:31Z 2008-10-24T21:04:31Z <p>Using CheGueVerra's template, I came up with the following solution:</p> <pre><code>&lt;PropertyGroup&gt; &lt;ProjBuildCmd Condition="'$(BuildCmd)' != 'Build'"&gt;:$(BuildCmd)&lt;/ProjBuildCmd&gt; &lt;SolnBuildCmd Condition="'$(BuildCmd)' != 'Build'"&gt;$(BuildCmd)&lt;/SolnBuildCmd&gt; &lt;/PropertyGroup&gt; </code></pre> <p>And then instead of using <code>$(BuildCmd)</code> directly, I use <code>$(ProjBuildCmd)</code> or <code>$(SolnBuildCmd)</code> like this:</p> <pre><code>&lt;!-- Build the 'bar' project only --&gt; &lt;Target Name="Baz"&gt; &lt;MSBuild Projects="Foo.sln" Targets="bar$(ProjBuildCmd)" /&gt; &lt;/Target&gt; &lt;!-- Build the whole solution --&gt; &lt;Target Name="Baz2"&gt; &lt;MSBuild Projects="Foo.sln" Targets="$(SolnBuildCmd)" /&gt; &lt;/Target&gt; </code></pre>