Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not load file or assembly 'Microsoft.VisualStudio.QualityTools.UTFResources

After moving the project for another team project i start to get the following error when, running a unit test, an assert fails:

"Could not load file or assembly 'Microsoft.VisualStudio.QualityTools.UTFResources, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' System.IO.FileNotFoundException

There is no failed references for the test project

like image 661
MiguelSlv Avatar asked Sep 01 '26 04:09

MiguelSlv


1 Answers

Solved by removing : Microsoft.VisualStudio.QualityTools.UnitTestFramework 'Microsoft.VisualStudio.QualityTools.UnitTestFramework.Extension'

and adding `Microsoft.VisualStudio.QualityTools.UnitTestFramework Version=10.1.0.0', the last version available on my instalation.

Extension dll was not even available to add.

like image 71
MiguelSlv Avatar answered Sep 02 '26 20:09

MiguelSlv