Hi everyone,
I've got an issue with a dll from a printer development environment. The issue is that I need to send some files to prinet to a certain printer, and I found that there's a development dll available for that printer. That printer wasn't singed, it didn't have the public token.
I found a post, and signed this way:
1- Using the Visual Studio 2015 command prompt
2- sn -k tsclibnet.snk
3-ildasm tsclibnet.dll /out:tsclibnet.il
4-ilasm tsclibnet.il /res:tsclibnet.res /dll /key:tsclibnet.snk /out:tsclibnet.dll
5-Found that process ended correct with sn -vf tsclibnet.dll
But when importing the DLL into a dotnet object in navision, I still having this problem:
Am I doing something wrong with the signing? Should I sign it with another application?
*This post is locked for comments