Skip to content

Commit 90e06a7

Browse files
committed
Fixes #2 - The nuget package can be found at: https://www.nuget.org/packages/GraphViz.NET/
1 parent 65b2ad6 commit 90e06a7

File tree

5 files changed

+71
-0
lines changed

5 files changed

+71
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
3+
<appSettings>
4+
<add key="graphVizLocation" value="" xdt:Transform="Insert" />
5+
</appSettings>
6+
</configuration>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
3+
<appSettings>
4+
<add key="graphVizLocation" value="" xdt:Transform="Insert" />
5+
</appSettings>
6+
</configuration>
9.52 KB
Binary file not shown.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0"?>
2+
<package >
3+
<metadata>
4+
<id>GraphViz.NET</id>
5+
<version>1.0.0</version>
6+
<authors>Jamie Dixon</authors>
7+
<owners>Jamie Dixon</owners>
8+
<licenseUrl>https://github.com/JamieDixon/GraphViz-C-Sharp-Wrapper</licenseUrl>
9+
<projectUrl>https://github.com/JamieDixon/GraphViz-C-Sharp-Wrapper</projectUrl>
10+
<iconUrl>https://cloud.githubusercontent.com/assets/1519443/8213182/0afa9bb4-1518-11e5-9d8b-8a3a9a0cecfa.png</iconUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<summary>
13+
GraphViz.NET - Use GraphViz in your .NET applications
14+
</summary>
15+
<description>
16+
This is a C# wrapper for the GraphViz graph generator.
17+
Pass in a dot string and an output type and voila, your graph is generated.
18+
The output file is returned to you as a byte array to do as you please.
19+
This library acts as a wrapper for the GraphViz command line tools.
20+
21+
Once installed, a new element will be added to your web.config or app.config with the key "graphVizLocation". Use this to specify to folder containing your installation of graphviz.
22+
</description>
23+
<releaseNotes></releaseNotes>
24+
<copyright>Copyright 2015</copyright>
25+
<tags>GraphViz GraphVizCSharp GraphVizDotNet DotNet CSharp</tags>
26+
<dependencies>
27+
</dependencies>
28+
</metadata>
29+
30+
<files>
31+
<file src="bin\GraphVizWrapper.dll" target="lib\net40" />
32+
<file src="Content\app.config.install.xdt" target="Content" />
33+
<file src="Content\web.config.install.xdt" target="Content" />
34+
<file src="readme.txt" target="" />
35+
</files>
36+
37+
</package>

src/nuget-package/readme.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#################################
2+
########## GraphViz.NET #########
3+
#################################
4+
5+
Thank you for installing and using GraphViz.NET
6+
7+
A new element with key "graphVizLocation" has been added the appSettings of your web.config or app.config.
8+
9+
Use this to specify the location of your graphviz installation.
10+
11+
For example, if you have the graphviz exe files (dot.exe, fdp.exe etc.) in a folder in C:\GraphViz
12+
then your web.config or app.config should have the following:
13+
14+
<appSettings>
15+
<add key="graphVizLocation" value="C:\GraphViz" />
16+
</appSettings>
17+
18+
For further information, issue tracking or general help, please visit our
19+
project on github at https://github.com/JamieDixon/GraphViz-C-Sharp-Wrapper
20+
21+
For support, please raise an issue in github issues.
22+
https://github.com/JamieDixon/GraphViz-C-Sharp-Wrapper/issues

0 commit comments

Comments
 (0)