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