来自app.config的bindingRedirect不会在构建时更新exe.config

枕上从妨一夜睡,灯前读尽十年诗。这篇文章主要讲述来自app.config的bindingRedirect不会在构建时更新exe.config相关的知识,希望能为你提供帮助。
为什么以下bindingRedirect不能将我的exe.config文件更新到同一个版本?它不断更新到最新?
的app.config

< dependentAssembly> < assemblyIdentity name="System.Net.Http" culture="neutral" publicKeyToken="b03f5f7f11d50a3a" /> < bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.0.0.0" /> < /dependentAssembly>

Application.exe.config
< dependentAssembly> < assemblyIdentity name="System.Net.Http" culture="neutral" publicKeyToken="b03f5f7f11d50a3a" /> < bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" /> < /dependentAssembly>

答案【来自app.config的bindingRedirect不会在构建时更新exe.config】也许你有版本问题,试试这个,除非你的最新版本是4.0.0.0。如果您的最新版本是4.2.0.0,那么我认为您应该使用最新版本。
< bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />


    推荐阅读