blob: 4d76f81176faeb23be740a7de7fb74bb75c17e86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?xml version="1.0"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Ice" culture="neutral" publicKeyToken="@PublicKeyToken@"/>
<codeBase version="3.7.3.0" href="@AssemblyDir@\Ice.dll"/>
<bindingRedirect oldVersion="3.7.0.0-3.7.2.0" newVersion="3.7.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="IceBox" culture="neutral" publicKeyToken="@PublicKeyToken@"/>
<codeBase version="3.7.3.0" href="@AssemblyDir@\IceBox.dll"/>
<bindingRedirect oldVersion="3.7.0.0-3.7.2.0" newVersion="3.7.3.0" />
</dependentAssembly>
<!--
This allows iceboxnet to load the IceSSL plug-in using a strong name. We omit the
optional attributes culture and publicKeyToken so they can be also omitted in the
IceSSL entry point.
-->
<dependentAssembly>
<assemblyIdentity name="IceSSL"/>
<codeBase version="3.7.3.0" href="@AssemblyDir@\IceSSL.dll"/>
<bindingRedirect oldVersion="3.7.0.0-3.7.2.0" newVersion="3.7.3.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
|