我想在安裝時通過使用XmlDocument類並直接修改值來更改bindingRedirect元素。這裏是我的app.config是什麼樣子:如何以編程方式修改app.config中的assemblyBinding?
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
...
</sectionGroup>
</configSections>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="MyDll" publicKeyToken="31bfe856bd364e35"/>
<bindingRedirect oldVersion="0.7" newVersion="1.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
...
</configuration>
我然後嘗試使用下面的代碼更改1.0〜2.0
private void SetRuntimeBinding(string path, string value)
{
XmlDocument xml = new XmlDocument();
xml.Load(Path.Combine(path, "MyApp.exe.config"));
XmlNode root = xml.DocumentElement;
if (root == null)
{
return;
}
XmlNode node = root.SelectSingleNode("/configuration/runtime/assemblyBinding/dependentAssembly/bindingRedirect/@newVersion");
if (node == null)
{
throw (new Exception("not found"));
}
node.Value = value;
xml.Save(Path.Combine(path, "MyApp.exe.config"));
}
然而,拋出「沒有發現」異常。如果我將路徑恢復到/ configuration/runtime,它就可以工作。但是,一旦我添加assemblyBinding,它不會找到該節點。這可能與xmlns有關?任何想法如何我可以修改這個? ConfigurationManager也無法訪問此部分。
只需要注意,我會拋出異常,因爲這是安裝項目的一部分,這就是安裝程序得到錯誤通知的方式。如果修改完成,則方法返回true或false會更好。 – esac 2009-05-01 00:11:06