Reputation: 127
I want to add Scintilla to my project, because I want to make my own HTML editor.
Visual Studio doesn't want to add a reference to SciLexer.dll
and SciLexer64.dll
.
I've dont everything in the installation instructions.
I'm using Windows 7 64 bit and Visual Studio 2012.
Upvotes: 1
Views: 947
Reputation: 11924
It's pretty clear in the documentation. You want to reference only ScintillaNET.dll
in your project, and ensure that SciLexer.dll
and SciLexer64.dll
are somewhere in your path. The ScintillaNET.dll
is a wrapper around the two other unmanaged DLL's, and used P/Invoke to call them.
This means that you need to ensure that the unmanaged DLL's are deployed with your application.
Upvotes: 1