“Assembly Same Simple Name already been imported” error

前端 未结 4 651
星月不相逢
星月不相逢 2021-01-01 23:05

This is a CLR project. I\'m importing two DLL files with the same name, quizz.dll (I rename the old version as legacyquizz.dll) and I include the n

相关标签:
4条回答
  • 2021-01-01 23:25

    I too seems this problem in my project. I had changed my dll path to another folder, and changed the reference path too for the same(dependency Layers). It will work. No duplication occurs.

    0 讨论(0)
  • 2021-01-01 23:27

    You can see the simple name by opening project properties and selecting Assembly Information:

    enter image description here

    To sign the assembly you need to select Signing tab and create or select signing key:

    enter image description here

    0 讨论(0)
  • 2021-01-01 23:46

    You have two assemblies with the same name (not file name, assembly name). There are two solutions to this:

    1. Rename one of the assemblies from the project's properties and recompile.
    2. Set up Strong-Name Signing on the assembly to allow two separate versions of the same assembly to coexist.
    0 讨论(0)
  • 2021-01-01 23:47

    If you are working with the new .csproj version, you may encounter this problem after you add a reference to another solution project, if the reference already exists as an Assembly Dependency (this reference may have been added automatically by Visual Studio).

    On Solution Explorer, expand the conflicting project, navigate to Dependencies->Assemblies and check that there is not an existing reference to the assembly that is raising the conflict. If it exists, just delete it and the conflict will be resolved.

    0 讨论(0)
提交回复
热议问题