How to create Unit Test in .NET 2.0 VS2013?

I tried the microsoft unit test package from nuget, but it could not install, so please help how to use unit test in visual studio using any package.

+4
source share
1 answer

The Visual Studio test tester expects the test project to be .NET 4.0 or later. But you can reference the .NET 2.0 assembly and test the code.

If you do not rely on the very specific functions of .NEt 2.0, then these projects will work fine.

0
source

Source: https://habr.com/ru/post/1585116/


All Articles