vote up 3 vote down star
1

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!

flag

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 at 14:39

1 Answer

vote up 4 vote down check

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

/p:DefineConstants="MYSYMBOL1;MYSYMBOL2"
link|flag
I'm not sure if it is what you want, so I'm not elaborating. Going to delete my answer if it's wrong. – Tomalak Jan 26 at 15:41
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 at 15:47
I can already feel the bonus karma. ;-) – Tomalak Jan 26 at 15:48

Your Answer

Get an OpenID
or

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