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
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"));
}
2.0を変更するには、次のコードを使用しようしかし、それは「が見つかりません」例外がスローされます。私がパスを/ configuration/runtimeに戻すと、それは動作します。しかし、assemblyBindingを追加するとノードが見つかりません。おそらく、これはxmlnsと関係がありますか?どのように私はこれを変更することができる任意のアイデア? ConfigurationManagerもこのセクションにアクセスできません。
これはセットアッププロジェクトの一部であり、インストーラにエラーが通知されるため、例外をスローします。修正が行われた場合、メソッドにtrueまたはfalseが返されるようにする方がよいでしょう。 – esac