Rohit
Rohit

Reputation: 7629

Passing command line arguments to C# projects, from devenv, while building a vdproj

We have a vdproj (Visual Studio Setup File) which references and builds some C# projects. In our build system, we would like to override some properties in the C# projects, when the vdproj gets built. Is there any way to do achieve this?

Upvotes: 0

Views: 820

Answers (1)

Sam Harwell
Sam Harwell

Reputation: 99859

Make a new configuration, like "Release (Setup)", and have your installer build with that configuration.

Upvotes: 3

Related Questions