GraphViz-C-Sharp-Wrapper
GraphViz-C-Sharp-Wrapper copied to clipboard
How-to install GraphViz2.38 ?
C-Sharp-Wrapper requires GraphViz2.38 installed in C:\Program Files (x86)\GraphViz2.38\bin ?
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>