Re: [WiX-users] Creating Isolated Storage for main assembly during it's install.

2014-04-04 Thread paul.chorley
s I'm missing something, the whole MS > Isolated storage system, although often encouraged, seems very > difficult to work with especially during an uninstall or if wishing to > migrate settings during an upgrade. > > Cheers, > Paul > > > -----Original Message- > F

Re: [WiX-users] Creating Isolated Storage for main assembly during it's install.

2014-04-02 Thread Carter Young
aged, seems very > difficult to work with especially during an uninstall or if wishing > to migrate settings during an upgrade. > > Cheers, > Paul > > > -Original Message- > From: David Watson [mailto:dwat...@sdl.com] > Sent: 31 March 2014 17:13 > To: General di

Re: [WiX-users] Creating Isolated Storage for main assembly during it's install.

2014-04-02 Thread paul.chorley
ng an uninstall or if wishing to migrate settings during an upgrade. Cheers, Paul -Original Message- From: David Watson [mailto:dwat...@sdl.com] Sent: 31 March 2014 17:13 To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Creating Isolated Storage for main assembly duri

Re: [WiX-users] Creating Isolated Storage for main assembly during it's install.

2014-03-31 Thread Carter Young
The reason I coded that tidbit this morning was to lead u to ensure that the XML File you're reading, and the ISOTest.exe your using are both in the same Directory, or storage area what ever you want to call it. From the sound of this post and your answer to me. you may be suffering from

Re: [WiX-users] Creating Isolated Storage for main assembly during it's install.

2014-03-31 Thread David Watson
t may this binding that's going a bit weird? -Original Message- From: paul.chor...@stfc.ac.uk [mailto:paul.chor...@stfc.ac.uk] Sent: 31 March 2014 16:06 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Creating Isolated Storage for main assembly during it's install

Re: [WiX-users] Creating Isolated Storage for main assembly during it's install.

2014-03-31 Thread paul.chorley
the DEBUG & RELEASE builds in VS that affects this which I cannot find or understand. Cheers, Paul -Original Message- From: Carter Young [mailto:ecyo...@grandecom.net] Sent: 31 March 2014 14:48 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Creating Isolated Storage for main

Re: [WiX-users] Creating Isolated Storage for main assembly during it's install.

2014-03-31 Thread Carter Young
Change: try ... isoFileStream = new IsolatedStorageFileStream("RemotingConfig.xml", FileMode.Create, store); to: try ... isoFileStream = new IsolatedStorageFileStream(String.Concat(Application.StartupPath,"RemotingConfig.xml", FileMode.C

[WiX-users] Creating Isolated Storage for main assembly during it's install.

2014-03-31 Thread paul.chorley
Hello, I have a simple VS2010 C# project that consists of:- ISOTest.exe - The only assembly representing the main application which is installed in the ProgramFiles folder using WIX. This has a public class:- public class ExposeIsolatedStorage { public static IsolatedStorageFi