Hello
i have a .netapplication that runs with no problem when launched from the local machine, but when i try to run the same executable from the network the applications doesn't start. I suppose that the .exe.config file has something to do with it. Here is the content of the configuration file
[CODE=xml]
<?xml version="1.0" encoding="utf-8" ?>
<configuratio n>
<configSections >
<sectionGroup name="userSetti ngs" type="System.Co nfiguration.Use rSettingsGroup, System, Version=2.0.0.0 , Culture=neutral , PublicKeyToken= b77a5c561934e08 9" >
<section name="DiffViewe r.Properties.Se ttings" type="System.Co nfiguration.Cli entSettingsSect ion, System, Version=2.0.0.0 , Culture=neutral , PublicKeyToken= b77a5c561934e08 9" allowExeDefinit ion="MachineToL ocalUser" requirePermissi on="false" />
</sectionGroup>
</configSections>
<userSettings >
<DiffViewer.Pro perties.Setting s>
<setting name="DirSyncLa stSourcePath" serializeAs="St ring">
<value />
</setting>
<setting name="DirSyncLa stTargetPath" serializeAs="St ring">
<value />
</setting>
<setting name="InfoPanel VisibleOnStartU p" serializeAs="St ring">
<value>True</value>
</setting>
<setting name="Previewer Maximized" serializeAs="St ring">
<value>False</value>
</setting>
</DiffViewer.Prop erties.Settings >
</userSettings>
</configuration>
[/CODE]
does anyone know or is there anything i can do in order for the application to run when being launched from the network drive?
thank you :)
i have a .netapplication that runs with no problem when launched from the local machine, but when i try to run the same executable from the network the applications doesn't start. I suppose that the .exe.config file has something to do with it. Here is the content of the configuration file
[CODE=xml]
<?xml version="1.0" encoding="utf-8" ?>
<configuratio n>
<configSections >
<sectionGroup name="userSetti ngs" type="System.Co nfiguration.Use rSettingsGroup, System, Version=2.0.0.0 , Culture=neutral , PublicKeyToken= b77a5c561934e08 9" >
<section name="DiffViewe r.Properties.Se ttings" type="System.Co nfiguration.Cli entSettingsSect ion, System, Version=2.0.0.0 , Culture=neutral , PublicKeyToken= b77a5c561934e08 9" allowExeDefinit ion="MachineToL ocalUser" requirePermissi on="false" />
</sectionGroup>
</configSections>
<userSettings >
<DiffViewer.Pro perties.Setting s>
<setting name="DirSyncLa stSourcePath" serializeAs="St ring">
<value />
</setting>
<setting name="DirSyncLa stTargetPath" serializeAs="St ring">
<value />
</setting>
<setting name="InfoPanel VisibleOnStartU p" serializeAs="St ring">
<value>True</value>
</setting>
<setting name="Previewer Maximized" serializeAs="St ring">
<value>False</value>
</setting>
</DiffViewer.Prop erties.Settings >
</userSettings>
</configuration>
[/CODE]
does anyone know or is there anything i can do in order for the application to run when being launched from the network drive?
thank you :)
Comment