44

When I use xbuild it always use debug as target, how do I make it use release?

For example I would expect something like

xbuild --release

but that doesn't work

Petr
  • 13,747
  • 20
  • 89
  • 144

1 Answers1

65

It looks like you should be able to so something like this:

xbuild /p:Configuration=Release MySolution.sln

Check out the MSBuild reference for additional options - I'm not sure if xbuild is 100% in line with what MSBuild supports, but it might be helpful to you.

Mark Carpenter
  • 17,445
  • 22
  • 96
  • 149