.NET
gdepends.txt
Associated article: Reducing Dependencies in .NET Development
Tags: .NET
Published source code accompanying the article by Scott Allen in which he presents GDEPENDS, a utility that graphically displays project dependencies parsed from Microsoft Visual Studio files by leveraging .NET Framework features such as COM interoperability, form-based GUI design, extensible metadata, and the .NET class library. Also see GDEPENDS.ZIP.
Reducing Dependencies In .NET Development
by Scott Allen
Listing One
[Plugin("SLN", Description = "Visual Studio.NET Solution")]
public class SLNAnalyzer : DependencyAnalyzer
{
/// <summary>
/// Pull dependencies from a SLN file.
/// SLN files look like this (some ...


