gpt4 book ai didi

c# - 为什么我的 App.Config 有这个奇怪的程序集重定向?

转载 作者:行者123 更新时间:2023-11-30 23:05:38 27 4
gpt4 key购买 nike

  <dependentAssembly>
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.1" newVersion="4.0.2.1" />
</dependentAssembly>

我不明白“旧版本”上的0.0.0.0-前缀

最佳答案

意思是:

将版本 0.0.0.0-4.0.2.1(即任何版本 <=4.0.2.1)的所有请求重定向到版本 4.0.2.1

引用the documentation :

oldVersion : Required attribute.

Specifies the version of the assembly that was originally requested. The format of an assembly version number is major.minor.build.revision. Valid values for each part of this version number are 0 to 65535.

You can also specify a range of versions in the following format:

n.n.n.n - n.n.n.n

因此在您的示例中,我们有以下范围:

0.0.0.0-4.0.2.1

或任何小于或等于 4.0.2.1 的版本。

关于c# - 为什么我的 App.Config 有这个奇怪的程序集重定向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48715643/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com