运行时应用程序配置文件错误

本文关键字:错误 配置文件 应用程序 运行时 | 更新日期: 2023-09-27 18:33:12

>上下文:

我有一个由本地网络上的用户启动的wform应用程序(路径:''file-01'appsdeploy$'MyApp

当我启动该应用程序时,没关系,它运行良好。但是在其他计算机上它不起作用。我有这个例外:

创建配置节处理程序时出错 我的部分:请求失败。

app.config 文件中该节的声明是:

  <configSections>
    <section name="MySection" type="MyGenerator.Config.MySection, MyGenerator"/>
    <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
      <section name="MySectionGenerator.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
    </sectionGroup>
  </configSections>

现在部分:

<MySection>
  <Addresses>
    <add Name="1" Text="ADDRESS ONE"/>
    <add Name="2" Text="ADDRESS TWO"/>
    <add Name="3" Text="ADDRESS THREE"/>
    <add Name="4" Text="ADDRESS FOUR"/>
    <add Name="5" Text="ADDRESS FIVE"/>
    <add Name="6" Text="ADDRESS SIX"/>
    <add Name="7" Text="ADDRESS SEVEN"/>
  </Addresses>
</MySection>

注意:如果我在本地计算机上复制可执行文件和配置文件,它可以正常工作。

你有没有想法,线索... ?

运行时应用程序配置文件错误

使用 allowExeDefinition=machinetoapplication 选项进行检查。