Skip to content

Commit 074b95f

Browse files
committed
use canonical directory for Vts.dll
1 parent 41d0169 commit 074b95f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Once this works the next step will be to test importing from `Vts.dll`
6363

6464
import clr
6565
git_dir = "/path/to/git/repository/"
66-
dll_path = git_dir + "vts/src/Vts/bin/Release/net6.0/Vts.dll"
66+
dll_path = git_dir + "vts/src/Vts/publish/local/Vts.dll"
6767
clr.AddReference(dll_path)
6868
from Vts import *
6969

@@ -72,7 +72,7 @@ Once this works the next step will be to test importing from `Vts.dll`
7272
To run `VTS` programs in `python` include the following the header (where, of course, "/path/to" has been updated for your system
7373

7474
import clr
75-
clr.AddReference("/path/to/vts/src/Vts/bin/Release/net6.0/Vts.dll")
75+
clr.AddReference("/path/to/vts/src/Vts/publish/local/Vts.dll")
7676

7777
from Vts import *
7878
from Vts.Common import *

0 commit comments

Comments
 (0)