views:

270

answers:

1

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?

+3  A: 

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

280Z28