F # project not supported for generating dependency graph?

I am using Visual Studio 2013, my solution contains both C # and f # projects. When I try to create a dependency graph for a solution, it only includes C # projects. Is there a way to make sure F # projects are included as well? Or is there any other way to render dependencies in F # projects?

+3


source to share


1 answer


I also have sln with C # and F # projects. Based on @tkarnau's comment, I created a dependency graph in VS2013, expanded the Externals group, dragged my own libraries outside the Externals group, and collapsed the Externals group. This seems to only work partially. F # projects that don't reference other F # or C # projects in my sln don't show up. For example, a unit test project is not displayed.



0


source







All Articles