<configuration> -> <assemblyBinding> 元素
更新:2007 年 11 月
指定配置级的程序集绑定策略。
<configuration> 元素
<configuration> -> <assemblyBinding> 元素
<assemblyBinding
xmlns="urn:schemas-microsoft-com:asm.v1">
</assemblyBinding>
属性和元素
以下几节描述了属性、子元素和父元素。
属性
属性 |
说明 |
---|---|
xmlns |
必选的属性。 指定程序集绑定所需的 XML 命名空间。使用字符串“urn:schemas-microsoft-com:asm.v1”作为值。 |
子元素
元素 |
说明 |
---|---|
指定要包含的配置文件。 |
父元素
元素 |
说明 |
---|---|
公共语言运行库和 .NET Framework 应用程序所使用的每个配置文件中的根元素。 |
备注
<linkedConfiguration> 元素允许应用程序配置文件包含已知位置的程序集配置文件,而不是复制程序集配置设置,从而简化了组件程序集的管理。
说明: |
---|
具有 Windows 并行清单的应用程序不支持 <linkedConfiguration> 元素。 |
示例
下面的代码示例演示如何包含本地硬盘上的配置文件。
<configuration>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<linkedConfiguration href="file://c:\Program Files\Contoso\sharedConfig.xml"/>
</assemblyBinding>
</configuration>