Iam facing some issues when deploying sharpshell on the client machines, really appritiated if some one could help me out. The configurations as follows
- Sharpshell 2.2.0
- 64Bit OS
- Framework 4.5.1
- Vc++ 2010 redistributable
- Deployment package was built on x86 architecture
Once I go through the error logs Find out that a error "Failed to initialise the Nativebridge" is happening this is an awesome library work like charm in Dev Environment.
Finally.. I found out a work around for the issues which I was facing :).
First of all took the master branch form GET and made Nativebridge project to x64 Compactable. thanks to the ref
Made some tiny changes under the file SharpShell\NativeBridge\NativeBridge.cs, function Initialise(), the lines where the nativeBridge Library is trying to load.The function looks as below after the edit during the time when I am writing this post.
Made the sharpshell, servermanager projects etc to x64 compactable, just Changed the target frame work to x64 and rebuilt.
Replace the sharpshell dll reference with the above in my project.
Yep that was enough for my case work like charm afterwards