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

2014-04-04 Thread paul.chorley
-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 during it's install. Ideally configuration like this should be done at first

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

2014-04-02 Thread paul.chorley
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 during it's install. Ideally configuration like

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

2014-04-02 Thread Carter Young
- 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 during it's install. Ideally configuration like this should be done at first run by your application

[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

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,

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

2014-03-31 Thread paul.chorley
-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 assembly during it's install. Change: try ... isoFileStream = new

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

2014-03-31 Thread David Watson
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. Hello Carter

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