Microsoft.Bcl.Async使用探测功能崩溃了app.config

时间:2013-08-01 07:37:36

标签: c# .net app-config async-await

我有一个app.config的应用程序,其中有一个probing-element。 当我添加Microsoft.Bcl.Async - Pack时,编译后我的appName.exe.config中删除了我的探测元素。

我该怎么办?

我的app.config:

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="bin" />      
</assemblyBinding>
</runtime>
编译后

我的appName.exe.config:

<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">    
  <dependentAssembly>
    <assemblyIdentity name="System.Runtime" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
    <bindingRedirect oldVersion="0.0.0.0-2.5.19.0" newVersion="2.5.19.0" />
  </dependentAssembly>
  <dependentAssembly>
    <assemblyIdentity name="System.Threading.Tasks" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
    <bindingRedirect oldVersion="0.0.0.0-2.5.19.0" newVersion="2.5.19.0" />
  </dependentAssembly>
</assemblyBinding>

0 个答案:

没有答案