MSBuild - Getting the target called from command line - Stack Overflow most recent 30 from stackoverflow.com2009-11-08T17:40:15Zhttp://stackoverflow.com/feeds/question/150047http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/150047/msbuild-getting-the-target-called-from-command-line3MSBuild - Getting the target called from command lineferventcoder2008-09-29T18:40:23Z2008-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#1502713Answer by apathetic for MSBuild - Getting the target called from command lineapathetic2008-09-29T19:29:04Z2008-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><Target Name="ApplicationDeployment">
<PropertyGroup>
<InvokedTarget Condition="'${InvokedTarget}'==''">ApplicationDeployment</InvokedTarget>
</PropertyGroup>
...
</Target>
</code></pre>
http://stackoverflow.com/questions/150047/msbuild-getting-the-target-called-from-command-line/150351#1503511Answer by Franci Penov for MSBuild - Getting the target called from command lineFranci Penov2008-09-29T19:51:26Z2008-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#1507380Answer by kodefuguru for MSBuild - Getting the target called from command linekodefuguru2008-09-29T21:21:27Z2008-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#1537415Answer by ferventcoder for MSBuild - Getting the target called from command lineferventcoder2008-09-30T16:04:10Z2008-09-30T16:04:10Z<p>I found the answer!</p>
<pre><code><Target Name="ApplicationDeployment" >
<CreateProperty Value="$(MSBuildProjectName) - $(Environment) - Application Deployment Complete">
<Output TaskParameter="Value" PropertyName="DeploymentCompleteNotifySubject" />
</CreateProperty>
</code></pre>
<p>I would like to give partial credit to apathetic. Not sure how to do that.</p>