What could be causing a System.TypeLoadException in a Visual Studio Unit Test?

前端 未结 13 1475
你的背包
你的背包 2020-12-05 17:43

I\'ve got a C# .NET class library MyClassLibrary that compiles fine. I\'m trying to create a unit test project for it (using Visual Studio Unit Testing Fram

13条回答
  •  一生所求
    2020-12-05 18:13

    This happened to me as well. I had a nuget package installed on my domain project with version 1.5, but only had version 1.1 on my unit test project. I resolved the issue by updating the version on the unit test project to match the version on the domain project (the project being tested against).

提交回复
热议问题