Does Msbuild recognise any build configurations other than DEBUG|RELEASE - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T13:58:05Zhttp://stackoverflow.com/feeds/question/606660http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/606660/does-msbuild-recognise-any-build-configurations-other-than-debugrelease1Does Msbuild recognise any build configurations other than DEBUG|RELEASEDean2009-03-03T14:47:58Z2009-03-03T15:39:24Z
<p>I created a configuration named Test via Visual Studio which currently just takes all of DEBUG settings, however I employ compiler conditions to determine some specific actions if the build happens to be TEST|DEBUG|RELEASE. </p>
<p>However how can I get my MSBUILD script to detect the TEST configuration?? </p>
<p>Currently I build </p>
<pre><code> <MSBuild Projects="@(SolutionsToBuild)" Properties="Configuration=$(Configuration);OutDir=$(BuildDir)\Builds\" />
</code></pre>
<p>Where @(SolutionsToBuild) is a my solution. In the <a href="http://msdn.microsoft.com/en-us/library/bb629394.aspx" rel="nofollow">Common MsBuild Project Properties</a> it states that $(Configuration) is a common property but it always appears blank? </p>
<p>Does this mean that it never gets set but is simply reserved for my use or that it can ONLY detect DEBUG|RELEASE. If so what is the point in allowing the creation of different build configurations? </p>
http://stackoverflow.com/questions/606660/does-msbuild-recognise-any-build-configurations-other-than-debugrelease/606674#6066746Answer by Mark Biek for Does Msbuild recognise any build configurations other than DEBUG|RELEASEMark Biek2009-03-03T14:50:49Z2009-03-03T15:39:24Z<p>I haven't done much with defining an MSBUILD configuration file but I have done builds of different configurations using a batch file like this</p>
<pre><code>msbuild /v:n /p:Configuration=Release "Capture.sln"
msbuild /v:n /p:Configuration=ReleaseNoUploads "Capture.sln"
</code></pre>
<p>I defined the <strong>ReleaseNoUploads</strong> configuration inside Visual Studio.</p>
<p>Here's what I had to do for that (this is Visual Studio 2005):</p>
<ul>
<li>Open the <em>Tools:Options</em> menu, go to the <em>Projects and Solutions:General</em> option, and check <strong>Show advanced build configurations</strong>.</li>
<li>From there, go to the <em>Build:Configuration</em> Manager menu</li>
<li>In the dialog that pops up, click on the <em>Active solution configuration</em> pulldown and click <strong><New...></strong> to create a new build configuration.</li>
</ul>
http://stackoverflow.com/questions/606660/does-msbuild-recognise-any-build-configurations-other-than-debugrelease/606676#6066765Answer by Chris Ballance for Does Msbuild recognise any build configurations other than DEBUG|RELEASEChris Ballance2009-03-03T14:50:55Z2009-03-03T14:50:55Z<p>Sure, you can have as many custom build configurations as you want to define. See this related question for how the setup might look.</p>
<p><a href="http://stackoverflow.com/questions/350377/deploy-an-app-config-based-on-build-configuration">http://stackoverflow.com/questions/350377/deploy-an-app-config-based-on-build-configuration</a></p>
http://stackoverflow.com/questions/606660/does-msbuild-recognise-any-build-configurations-other-than-debugrelease/606715#6067151Answer by Brian for Does Msbuild recognise any build configurations other than DEBUG|RELEASEBrian2009-03-03T15:01:06Z2009-03-03T15:01:06Z<p>Note that when 'inside visual studio', the $(Configuration) and $(Platform) are always set by VS using the Configuration Manager stuff in the dropdowns at the top. Whereas if you want to set these values using msbuild from the command line, you must pass in the values explicitly (as in @MarkBiek's answer). </p>
<p>(Most VS project templates will 'default in' a value for Configuration/Platform, so that you can use the command-line MSBuild without specifying these values explicitly. This is good, but makes these two useful/common properties appear a little more magical/weird than they actually are.)</p>