Home
Browse all 647 examples
Download all 647 examples
Download sample chapters
Reviews
Errata
Acknowledgments
Links on .NET
Paradoxal Press
Buy directly from Paradoxal Press at $33.99 (Save 43%)
Category: Programming
Level: Beginner to seasoned
900 pages
ISBN-10 097661322-0
ISBN-13 978-097661322-0
$59.99 USA
$79.99 CANADA
|
Listing 4-10 extracted from chapter The CLR (Common Languages Runtime)
Listing 4-9< > Listing 4-11
Example_4_10.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="Path1;Path2/bin" />
<dependentAssembly>
<assemblyIdentity name="Foo1" culture= "neutral"
publicKeyToken="C64B742BD612D74A" />
<publiherPolicy apply="no" />
<bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Foo2" culture= "neutral"
publicKeyToken="C64B742BD612D74A" />
<codebase version="2.0.0.0"
href = "file:///C:/Code/Foo2.dll>"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Foo3" culture= "fr-FR"
publicKeyToken="C64B742BD612D74A" />
<codebase version="3.0.0.0"
href = "http://www.smacchia.com/Foo3.dll>"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Copyright Patrick Smacchia 2006 2007
|