If we make use of external assembly in our Plugin (sandboxed) we will get the exception of FileNotFound.
So here we can make use of ILMerge which basically merges the assembly referenced and the plugin into a single assembly.
Install the following NuGet Package.
This adds the following files in our Plugin project.
We need to set Copy Local as true for all our referenced assembly that we want to merge with our plugin.
We need to set Copy Local as false for all other assemblies that we…