I need to embed EPPlus.dll to my standalone exe app. I don't want it to be copied along the exe. Apparently icluding it as an assembly resource would solve my problem. I found many decriptions on how to do it. For e.g. I performed all the below:
https://www.youtube.com/watch?v=x-KK7bmo1AM
http://adamthetech.com/2011/06/embed-dll-files-within-an-exe-c-sharp-winforms/
Embedding DLL's into .exe in in Visual C# 2010
Still I get Could not load file or assembly 'EPPlus.dll'...
Can you please give me some idea as I have never done something like this before?
P.S.: I use VS C# 2010 Express