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