[WiX-users] MSI property not being read in via custom action?

2012-09-14 Thread StevenOgilvie
Hi, I have a property being set to 0 at start in product.wxs Property Id=DATABASE_CREATE_SCHEMA Secure=no Value=0/ In a C# custom action I set it to 1: SetSessionProperty(session, DATABASE_CREATE_SCHEMA, 1); where SetSessionPropertyis: private static void

Re: [WiX-users] MSI property not being read in via custom action?

2012-09-14 Thread StevenOgilvie
forgot to add, in the first customaction that changes the value I can see in the msi logfile that the value has been changed: MSI (c) (40!F4) [17:11:05:685]: PROPERTY CHANGE: Modifying DATABASE_CREATE_SCHEMA property. Its current value is '0'. Its new value: '1'. however I can see that the

Re: [WiX-users] MSI property not being read in via custom action?

2012-09-14 Thread Hoover, Jacob
, September 14, 2012 4:09 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] MSI property not being read in via custom action? Hi, I have a property being set to 0 at start in product.wxs Property Id=DATABASE_CREATE_SCHEMA Secure=no Value=0/ In a C# custom action I set it to 1