Click here to Skip to main content
15,895,256 members
Articles / Programming Languages / C#

Visualizing Project Dependencies Automatically

Rate me:
Please Sign up or sign in to vote.
4.09/5 (11 votes)
4 Sep 2007CPOL3 min read 43.1K   428   32  
Have a large code tree? Wondering which projects refer to which other ones? Manually run this console app, schedule it to run nightly or after each build.

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DependencyTracker", "DependencyTracker\DependencyTracker.csproj", "{9E63326C-525A-48B7-92B8-EDF7B9A49AA3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test", "Test\Test.csproj", "{1FBBF587-CA2F-497B-B002-F6CCDA7E62D3}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{9E63326C-525A-48B7-92B8-EDF7B9A49AA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{9E63326C-525A-48B7-92B8-EDF7B9A49AA3}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{9E63326C-525A-48B7-92B8-EDF7B9A49AA3}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{9E63326C-525A-48B7-92B8-EDF7B9A49AA3}.Release|Any CPU.Build.0 = Release|Any CPU
		{1FBBF587-CA2F-497B-B002-F6CCDA7E62D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{1FBBF587-CA2F-497B-B002-F6CCDA7E62D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{1FBBF587-CA2F-497B-B002-F6CCDA7E62D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{1FBBF587-CA2F-497B-B002-F6CCDA7E62D3}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
I've been a software developer since 1996 and have enjoyed C# since 2003. I have a Bachelor's degree in Computer Science and for some reason, a Master's degree in Business Administration. I currently do software development contracting/consulting.

Comments and Discussions