Forcing the ASP.NET Application to load the assembly from bin not from GAC

后端 未结 8 1446
死守一世寂寞
死守一世寂寞 2020-12-15 21:18

Is there any way to force my asp.net application to load the assembly from local bin directory since there is another older version of the assembly with the same name in the

8条回答
  •  情深已故
    2020-12-15 21:58

    To redirect one version to another, use the element. The oldVersion attribute can specify either a single version, or a range of versions. For example, specifies that the runtime should use version 2.0.0.0 instead of the assembly versions between 1.1.0.0 and 1.2.0.0.

    s

提交回复
热议问题