var fDesc=new Array(); fDesc[0] = "Dependency Visualizer graphically shows the inter-project dependencies between Visual Studio projects as a SVG and/or PNG diagram. Both project and file references are supported and project references are followed recursively.

Support for both Visual Studio 2005 and 2008. MSBuild compatible project types are supported, but by popular request, it also supports solution files and C projects."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }