The full name of the assembly referenced in the configuration section entry varies with the framework release. For .NET 3.5 it is
Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
You can find this by settign a breakpoint in your ClassInitialization method and doing something like:
? gettype(DataSourceAttribute).Assembly.FullName.ToString
in VB. For C#, replace with GetType with TypeOf and watch casing and parentheses. Any class within the assembly will work.
Then, replace the version with the one on your system, and ensure teh publickeytoken is the same. In this case, just update the version number and your good to go.
Enjoy!
Kathleen Dollard