I am analyzing a .NET Framework assembly using ILSpy. I noticed a Resources
folder that contains many DLLs and *.tx files. These resources are copied to the output folder when you have the assembly in your VisualStudio project references.
I need to replicate this behavior in my own assembly, how and where should I add these files in my VisualStudio project?
The original assembly is a .NET Wrapper and the DLLs inside the resource folder are unmanaged C/C++ ones.
Thanks.