MSBuild - Getting the target called from command line - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T17:40:15Z http://stackoverflow.com/feeds/question/150047 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/150047/msbuild-getting-the-target-called-from-command-line 3 MSBuild - Getting the target called from command line ferventcoder 2008-09-29T18:40:23Z 2008-09-30T16:04:10Z <p>Does anyone know how to get the name of the TARGET (/t) called from the MSBuild command line? There are a few types of targets that can be called and I want to use that property in a notification to users.</p> <p>Example:</p> <p>msbuild Project.proj <strong>/t:ApplicationDeployment</strong> /p:Environment=DEV</p> <p>I want access to the target words <strong>ApplicationDeployment</strong> in my .Proj file. </p> <p>Is there a property I can access? Any clue how to do this?</p> <p><strong>EDIT:</strong> I do not want to have to also pass in a property to get this.</p> <p><strong>UPDATE:</strong> This is based on <strong>deployment scripts</strong> using MSBuild scripts. My build server is not used for deploying code, only for building. The build server itself has build notifications that can be opted into.</p> http://stackoverflow.com/questions/150047/msbuild-getting-the-target-called-from-command-line/150271#150271 3 Answer by apathetic for MSBuild - Getting the target called from command line apathetic 2008-09-29T19:29:04Z 2008-09-29T20:10:34Z <p>I'm not sure how to do exactly what you ask, but could you pass that string using the /p option?</p> <pre><code>msbuild Project.proj /t:ApplicationDeployment /p:Environment=DEV;MyValue=ApplicationDeployment </code></pre> <p><hr /></p> <p>The only other way I can see to do it is to use a conditional property in each target, and thus establish the first target to be invoked.</p> <pre><code>&lt;Target Name="ApplicationDeployment"&gt; &lt;PropertyGroup&gt; &lt;InvokedTarget Condition="'${InvokedTarget}'==''"&gt;ApplicationDeployment&lt;/InvokedTarget&gt; &lt;/PropertyGroup&gt; ... &lt;/Target&gt; </code></pre> http://stackoverflow.com/questions/150047/msbuild-getting-the-target-called-from-command-line/150351#150351 1 Answer by Franci Penov for MSBuild - Getting the target called from command line Franci Penov 2008-09-29T19:51:26Z 2008-09-29T19:51:26Z <p>There's no way to do this (that I am aware of). MSBuild doesn't have a property for the list of targets requested to build.</p> <p>However, if you find a way, keep in mind that it might not be a single target, but instead a list of targets to build.</p> http://stackoverflow.com/questions/150047/msbuild-getting-the-target-called-from-command-line/150738#150738 0 Answer by kodefuguru for MSBuild - Getting the target called from command line kodefuguru 2008-09-29T21:21:27Z 2008-09-29T21:21:27Z <p>I'd recommend using a server like CCNET to handle build executions and notification. Sure, you can do things to your MSBuild script to send out notificatioms, but that domain belongs to the build server.</p> http://stackoverflow.com/questions/150047/msbuild-getting-the-target-called-from-command-line/153741#153741 5 Answer by ferventcoder for MSBuild - Getting the target called from command line ferventcoder 2008-09-30T16:04:10Z 2008-09-30T16:04:10Z <p>I found the answer!</p> <pre><code>&lt;Target Name="ApplicationDeployment" &gt; &lt;CreateProperty Value="$(MSBuildProjectName) - $(Environment) - Application Deployment Complete"&gt; &lt;Output TaskParameter="Value" PropertyName="DeploymentCompleteNotifySubject" /&gt; &lt;/CreateProperty&gt; </code></pre> <p>I would like to give partial credit to apathetic. Not sure how to do that.</p>