up vote 11 down vote favorite
1
share [g+] share [fb]

I'm possibly just blind, but is there a command line to specify conditional compilation symbols in MSBUILD?

I currently have this Line in my buildscript:

SET MSBUILD=C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe
SET CONFIG=Debug
%MSBUILD% /p:Configuration=%CONFIG% /p:OutputPath=..\..\output source\MyProject\MyProject.csproj

And I'd like to add a condition. In Visual Studio, i can just go into Project Properties => Build => Conditional compilation symbols, but I have not seen that option for msbuild?

Bonus Karma if you know if I can completely override all symbols already specified in the .csproj files to make sure that only the conditionals from my Buildscript go in.

Thanks!

link|improve this question

And BTW, this is not a duplicate of stackoverflow.com/questions/296147/… because the other question has the same title but the answer only includes Visual Studio/Project File modification. – Michael Stum Jan 26 '09 at 14:39
feedback

3 Answers

up vote 24 down vote accepted

Have you seen this? (most info is in the penultimate post)

/p:DefineConstants="MYSYMBOL1;MYSYMBOL2"
link|improve this answer
Added the Code, that was it, thanks! It overrides all Constants that may be defined in the .csproj file, which is good as well. – Michael Stum Jan 26 '09 at 15:47
I can already feel the bonus karma. ;-) – Tomalak Jan 26 '09 at 15:48
feedback

I had to use a space instead of a semicolon a la http://www.linqinpark.net/2009/01/13/MSBuildWithMultipleDefineConstants.aspx

link|improve this answer
feedback

/p:DefineConstants is an all or nothing deal.

If you just want to turn off trace symbol, you can't just do it with: msbuild /p:DefineTrace=false

You have to define something to override all the symbols already defined: msbuild /p:DefineConstants="RANDOM-SYMBOL"

Thanks Michael Stum point this hidden rule out I have also wrote a blog about it

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.