how can I use xbuild to build release binary

Petr picture Petr · Jul 13, 2013 · Viewed 17.4k times · Source

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

Answer

Mark Carpenter picture Mark Carpenter · Jul 13, 2013

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.