VS 2008

From Richard's Wiki
Revision as of 23:37, 3 December 2008 by Rkdrm (Talk | contribs) (New page: * [http://stackoverflow.com/questions/273174/visual-studio-2008-test-view-panel-not-showing-all-tests Visual Studio 2008 Test View Panel Not Showing All Tests] When creating a "Test" proj...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
When creating a "Test" project in Visual Studio, the following element 
is added to the csproj xml in the very first PropertyGroup element:
 
   <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
 
If you created your test assembly by hand, say by creating a new Class Library 
and adding a reference to Microsoft.VisualStudio.QualityTools.UnitTestFramework,
this element will not be in your csproj file and visual studio will ignore all
the tests located inside. Add the element and all will be good again.