Coder Social home page Coder Social logo

Comments (9)

grisharav avatar grisharav commented on May 27, 2024

Indeed, and causes also strange redirection bindings...

from asyncio.

sharpe5 avatar sharpe5 commented on May 27, 2024

I ran into the same issue too.

When upgrading from 1.25.0 to 1.40.0, it automatically added an assembly binding redirect into app.config:

<bindingRedirect oldVersion="0.0.0.0-0.0.0.0" newVersion="0.0.0.0" />

When I ran the project, it threw an exception:

An unhandled exception of type 'System.IO.FileLoadException' occurred in NetMQ.dll

Additional information: Could not load file or assembly 'AsyncIO, Version=0.1.25.0, Culture=neutral, PublicKeyToken=44a94435bd6f33f8' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

To fix ,I had to manually adjust the binding redirect, so all versions are redirected to version 0.0.0.0:

<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="AsyncIO" publicKeyToken="44a94435bd6f33f8" culture="neutral" />
        <bindingRedirect oldVersion="0.0.0.0-0.1.40.0" newVersion="0.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

from asyncio.

sharpe5 avatar sharpe5 commented on May 27, 2024

Currently, I cannot upgrade NetMQ.ReactiveExtensions to use AsyncIO v1.40. The problem is that the default assembly language binding redirect that Visual Studio adds to app.config is:

<bindingRedirect oldVersion="0.0.0.0-0.0.0.0" newVersion="0.0.0.0" />

... which has to be hand-edited to this, or else it will throw an exception on startup:

<bindingRedirect oldVersion="0.0.0.0-0.1.40.0" newVersion="0.0.0.0" />

from asyncio.

somdoron avatar somdoron commented on May 27, 2024

@sharpe5 can you send a pull request?

from asyncio.

sharpe5 avatar sharpe5 commented on May 27, 2024

from asyncio.

sharpe5 avatar sharpe5 commented on May 27, 2024

Created a pull request, please let me know if anything needs changing.

This was a really good exercise for me. I will copy the structure of your project when I upgrade NetMQ.ReactiveExtensions to the newer .csproj file format.

Thank you again for your excellent work!

from asyncio.

tylerje avatar tylerje commented on May 27, 2024

Any update on this work. I'm running into the same problem.

from asyncio.

robvon avatar robvon commented on May 27, 2024

Same problem today, May 2018. Although github appears to be at version 0.1.42, nuget delivers 0.1.40 and it's internal version number is still 0.0.0.0.
In the end, I downloaded the source. Noticed a few "obsolete" warnings upon compilation

from asyncio.

sharpe5 avatar sharpe5 commented on May 27, 2024

Deploying the latest version 0.1.42.0 to NuGet would fix the issue, as this issue was fixed in pull request #22.

from asyncio.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.