GraphViz-C-Sharp-Wrapper icon indicating copy to clipboard operation
GraphViz-C-Sharp-Wrapper copied to clipboard

How-to install GraphViz2.38 ?

Open kiquenet opened this issue 6 years ago • 1 comments

C-Sharp-Wrapper requires GraphViz2.38 installed in C:\Program Files (x86)\GraphViz2.38\bin ?

kiquenet avatar Dec 26 '18 15:12 kiquenet

The code first looks in ConfigurationManager.AppSettings["graphVizLocation"]; for the Graphviz path and then looks in AssemblyDirectory + "/" + ProcessFolder if the former isn't found.

https://github.com/JamieDixon/GraphViz-C-Sharp-Wrapper/blob/8db6f552f87cb0319472a9e8824bb1626e544d1b/src/GraphVizWrapper/GraphGeneration.cs#L48

You can set the path by including it in your appSettings:

<appSettings>
    <add key="graphVizLocation" value="C:\Program Files (x86)\Graphviz2.38\bin" />
</appSettings>

JamieDixon avatar Dec 28 '18 18:12 JamieDixon