Reputation: 8655
I am using Visual Studio 2015 with F#. In C# projects, you can create class diagram files (*.cd
) to visualize the types in your solution and their dependencies on each other. Is there anything available like that for F#?
I tried manually creating a *.cd
in my project but a dialog popped up saying that those diagrams are only supported for C#, C++, and VB.
I also have Resharper, which has a Type Dependency diagram tool, which also does not work with F# projects.
Upvotes: 5
Views: 668
Reputation: 93
If you are looking just to visualize your types relation, you can use dotPeek from Resharper.
In dotPeek:
Upvotes: 2