Article Collaboration on Visually Graphing the Service Dependencies of an IoC Container?
-
I've been working furiously on my new IoC container and one of the things that it can do is enumerate the available services inside a container as well as enumerate the types that implement each service name and service type. Here's an example:
// Instantiate the list of available services
var services = from info in container.AvailableServices
where info.ServiceType == typeof(IMyService)
&& info.ServiceName == "MyService"
select container.GetService(info);// Do something with the graph of services here
The problem is that graphics isn't my expertise, and I'm not sure if I have enough time to learn all the intricacies of either WPF or GraphViz in order to get this article up and running. I've got plenty of experience working with component architectures, but I'm going to need someone to help me get the graphical elements up and running in a short amount of time. Any takers? :)
Do you know...LinFu?