Arnaud F.
Arnaud F.

Reputation: 8452

Generate Debug & Release simultaneously

Here is my situation. I've multiple projects / solutions that are linked.

(I modified the .csproj manually in order to reference the current configuration and not always Debug or Release).

I do that because I won't include all referenced projects I need directly in my solution to not polluate it.

So, in order to be always up-to-date, I want to generate both, Debug & Release configuration when building referenced projects. It's possible?

Upvotes: 1

Views: 168

Answers (1)

brgerner
brgerner

Reputation: 4371

Use Batch Build.

Open Build->Batch Build... in solution A, select all projects you need in all configurations (Debug, Release,...) you need and click Build button.

VS will remember your selection for next batch build. So you just need to enter Alt+B, Alt+T, Enter for next build.

Upvotes: 1

Related Questions