How can I add an assembly binding redirect to a .net core unit test project?

前端 未结 3 1234
天涯浪人
天涯浪人 2020-12-30 00:48

I\'m trying to create a .net core unit test project against framework 4.6.1 which tests an project dependent on Microsoft.SqlServer.Types (10.0.0.0). Prior to .net core I\'d

3条回答
  •  有刺的猬
    2020-12-30 01:37

    In my case none of the solutions mentioned above helped (even if the binding redirects are generated automatically or added manually, looks like these hacks are really not working anymore as @Joao suggested).

    So I added the desired version of the package to my project, even if it is not used directly and this resolved the issue. I don't like this approach, but this was the only way working for me.

    Hopefully this method can help others as well.

提交回复
热议问题