I work with VS2013,.NET4.5
I tried to use Microsoft.VisualStudio.TestTools.UnitTesting.TestCategoryAttributein my tests to disable them in the build server. I was unable to find it in Add reference -> Assemblies, so I decided to use the nuget package . I originally installed it through the "Package Manager Console".
Now I am experiencing a strange problem with the Microsoft.VisualStudio.QualityTools.UnitTestFrameworknuget package . When I install it through Manage nuget packagesat the project level, I do not see it in the links. If I try to install it again, it will show the install button, but when I click, nothing happens.
If the search is at the solution level, when it finds a package, it shows a green flag โinstalledโ, but I can not find it in the installed packages, so I have no way to enable it for projects.
I checked the folder folder and files.
I can manually add the link by looking .dllin the packages folder, but it looks like a hack, and I'm sure it will fail on the build server.
And delete it only manually by going to \packagesremoval .nupkgand then removing the link from packages.config.
Have you experienced something like this (perhaps with one of the other nuget packages)? What is the reason? How did you solve it?
source
share