Microsoft.VisualStudio.QualityTools - readme.txt 988 B

123456789101112131415161718192021
  1. Visual Studio 2010 changes the .csproj file's reference to Microsoft.VisualStudio.QualityTools.UnitTestFramework
  2. aggressively upon each edit of test projects. In particular, it changes the following:
  3. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" Condition=" '$(BuildPlatform)' == 'DESKTOPCLR' " />
  4. into
  5. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
  6. dropping the conditional include. In order to reach a fixpoint when opening the project, we choose to include
  7. a file with the name Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll in every reference assemblies
  8. folder. This file actually contains the testing suite used and ***IS NOT NECESSARILY*** the same as the one
  9. used for desktop CLR (which has that name).
  10. In particular, for Silverlight, this file is a rename of
  11. Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll
  12. into
  13. Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll