<runtime> 項目
包含有關組件繫結和記憶體回收的資訊。
<configuration> 項目
<runtime> 項目
<runtime>
</runtime>
屬性和項目
下列章節會說明屬性 (Attribute)、子項目和父項目。
屬性
無。
子項目
項目 | 說明 |
---|---|
指定 Common Language Runtime 是否並行執行記憶體回收。 |
|
包含有關組件版本重新導向和組件位置的資訊。 |
父項目
項目 | 說明 |
---|---|
configuration |
每一個組態檔中的根 (Root) 項目是由 Common Language Runtime 和 .NET Framework 應用程式所使用的。 |
範例
下列範例顯示如何將一個組件版本重新導向為另一個版本。
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="myAssembly"
publicKeyToken="32ab4ba45e0a69a1"
culture="neutral" />
<bindingRedirect oldVersion="1.0.0.0"
newVersion="2.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>