<configuration> 的 <assemblyBinding> 元素
指定位於組態層級的組件繫結原則。
<configuration>
<assemblyBinding>
Syntax
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<!-- Configuration files to include. -->
</assemblyBinding>
屬性
描述 | |
---|---|
xmlns | 必要屬性。 指定組件繫結所需的 XML 命名空間。 使用字串 "urn:schemas-microsoft-com:asm.v1" 做為值。 |
父元素
描述 | |
---|---|
<configuration> | 通用語言執行平台和 .NET Framework 應用程式所使用之每個組態檔中的根項目。 |
子項目
描述 | |
---|---|
<linkedConfiguration> | 指定要包含的組態檔。 |
備註
<linkedConfiguration> 元素透過允許應用程式組態檔在已知位置中包含組件組態檔,而不是複製組件組態設定,藉此簡化元件組件的管理。
注意
<linkedConfiguration> 與 Windows 並排顯示的資訊清單的應用程式不支援元素。
範例
下列範例示範如何在本機硬碟中包含組態檔:
<configuration>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<linkedConfiguration href="file://c:\Program Files\Contoso\sharedConfig.xml" />
</assemblyBinding>
</configuration>