-
Notifications
You must be signed in to change notification settings - Fork 16
/
How-to-upgrade-graphviz.txt
15 lines (15 loc) · 1.51 KB
/
How-to-upgrade-graphviz.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- Navigate to https://gitlab.com/groups/graphviz/-/packages/ and click the version you want to upgrade to
- Download and install `windows_10_cmake_Debug_graphviz-install-<version>-win64.exe` on your system
- Navigate to `C:\Program Files\Graphviz\bin` and copy all the files in that folder to `Graphviz.NetWrapper\GraphvizWrapper\graphvizfiles\Debug\`.
Check that every existing file was overwritten.
- Navigate to `C:\Program Files\Graphviz\lib` and copy all the .lib files in that folder to `Graphviz.NetWrapper\GraphvizWrapper\lib\`.
Check that every existing file was overwritten.
- Navigate to `C:\Program Files\Graphviz\include\graphviz` and copy all the lib files in that folder to `Graphviz.NetWrapper\GraphvizWrapper\include\`.
Check that every existing file was overwritten.
- Download and install `windows_10_cmake_Release_graphviz-install-<version>-win64.exe` on your system
- Navigate to `C:\Program Files\Graphviz\bin` and copy all the files in that folder to `Graphviz.NetWrapper\GraphvizWrapper\graphvizfiles\Release\`.
Check that every existing file was overwritten.
- Make sure that the toolset selected for GraphvizWrapper.dll is compatible with the vcruntime version shipped with graphviz.
- Remove all DLLs starting with `concrt`, `msvcp` or `vcruntime`. These are part of the Visual C++ redistributable package, and we're not shipping those.
- Remove all files ending in `.sh`, these are not crossplatform and we don't need them.
- Check if any other files are new, and investigate if that is expected.