1
vote
Referencing an Assembly in the Application Path
The way we generally add references at work is the following:
import sys
import clr
# forward slashes work fine here and don't need to be escaped
sys.path.append('c:/path/to/directo …
