vote up 0 vote down star

I am trying to build release mode .

like that

msbuild LP.sln /p:buildmode=release Blockquote

but i get always debug . any idea why ?

I saw and checked following posts . link text link text

thanks a lot .

flag

How did you verify that your build was a debug build ? – Frederik Gheysels Oct 27 at 10:05
What do you mean i checked what directory was created – Night Walker Oct 27 at 10:07

1 Answer

vote up 3 vote down check

That depends on the contents of that buildscript. VisualStudio C# uses the parameter Configuration to switch beteen Release and Debug. Not buildmode. You might want to try the following:

msbuild LP.sln /p:Configuration=Release
link|flag

Your Answer

Get an OpenID
or

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