编辑machine.config文件

时间:2012-10-29 19:00:36

标签: c# machine.config

我需要为计算机上运行的所有应用程序集中库位置,因此我在machine.config文件中包含以下部分。根据注释,machine.config应该只包含与其默认值不同的设置。所以我删除了machine.config中的所有内容,包括:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="myAssembly" culture="neutral" publicKeyToken="fkjdkfjdfkdjfdkf"/>
        <codeBase version="1.2" href="file://C:/libs/myAssembly.dll"/>
     </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

当我在app.config文件中包含此部分时,一切正常。但是,当我将其移动到machine.config文件时,我在应用程序中收到以下错误 -

'...'的类型初始值设定项引发了异常。这可能是什么问题?这是编辑machine.config文件的正确方法。

0 个答案:

没有答案