I'm working on a project in Visual Studio where I need to embed 2 DLLs.
So far, I've been referencing those DLLs, but then I cannot use them without actually having the files in the same folder as my EXE.
Obviously, I want my users to only need the EXE to use them, without having to download the DLLs as well.
The thing I tried to far is following this tutorial: https://www.youtube.com/watch?v=lx2tSY4joDg
But this is only for one file and the tutorial sadly didn't work for me.
What can I do? Thanks!
EDIT: The project was built by Windows Forms Application.