Re: [WiX-users] Setting property values based on Visual Studio build configurations.

2015-04-15 Thread Joseph L. Casale
> Sure there is: > > > > > > > See Using Project References and Variables > > > for more preprocessor variables, and Preprocessor >

Re: [WiX-users] Setting property values based on Visual Studio build configurations.

2015-04-15 Thread Nir Bar
Sure there is: See Using Project References and Variables for more preprocessor variables, and Preprocessor on how to use the

Re: [WiX-users] Setting property values based on Visual Studio build configurations.

2015-04-15 Thread Joseph L. Casale
> In your project file add property value: > > Condition="'$(Configuration)'=='Debug'">$(DefineConstants);MyConfig=MyDebugValue > Condition="'$(Configuration)'=='Release'">$(DefineConstants);MyConfig=MyReleaseValue

Re: [WiX-users] Setting property values based on Visual Studio build configurations.

2015-04-15 Thread Nir Bar
In your project file add property value: $(DefineConstants);MyConfig=MyDebugValue $(DefineConstants);MyConfig=MyReleaseValue

[WiX-users] Setting property values based on Visual Studio build configurations.

2015-04-14 Thread Joseph L. Casale
I want to build an msi under debug with a specific set of values (that make sense in my dev env) versus release (which make sense in a prod env). As they are all public, users can modify them via the command line however they all populate default values used in various dialogs and it would be ti