MSBuild: Specifying a target from the command line - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T00:02:22Zhttp://stackoverflow.com/feeds/question/232052http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/232052/msbuild-specifying-a-target-from-the-command-line3MSBuild: Specifying a target from the command lineDerek2008-10-24T00:07:38Z2008-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><Target Name="Baz">
<MSBuild Projects="Foo.sln" Targets="bar:$(BuildCmd)" />
</Target>
</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#2321190Answer by ripper234 for MSBuild: Specifying a target from the command lineripper2342008-10-24T00:45:19Z2008-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#2325181Answer by Tim Stewart for MSBuild: Specifying a target from the command lineTim Stewart2008-10-24T05:07:41Z2008-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#2337380Answer by CheGueVerra for MSBuild: Specifying a target from the command lineCheGueVerra2008-10-24T14:21:24Z2008-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><PropertyGroup>
<BuildCmd Condition=" '$(BuildCmd)' == ''">Build</BuildCmd>
</PropertyGroup>
</code></pre>
<p>After create the target that will start the MsBuild with the specified target in the parameter</p>
<pre><code><Target Name="Stackoverflow">
<MsBuild Projects="Foo.sln" Targets="$(BuildCmd)" />
</Target>
</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#2352570Answer by Derek for MSBuild: Specifying a target from the command lineDerek2008-10-24T21:04:31Z2008-10-24T21:04:31Z<p>Using CheGueVerra's template, I came up with the following solution:</p>
<pre><code><PropertyGroup>
<ProjBuildCmd Condition="'$(BuildCmd)' != 'Build'">:$(BuildCmd)</ProjBuildCmd>
<SolnBuildCmd Condition="'$(BuildCmd)' != 'Build'">$(BuildCmd)</SolnBuildCmd>
</PropertyGroup>
</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><!-- Build the 'bar' project only -->
<Target Name="Baz">
<MSBuild Projects="Foo.sln" Targets="bar$(ProjBuildCmd)" />
</Target>
<!-- Build the whole solution -->
<Target Name="Baz2">
<MSBuild Projects="Foo.sln" Targets="$(SolnBuildCmd)" />
</Target>
</code></pre>