This is all hypothetical, so please bear with me.
Say I'm writing a tool in C # called Foo. The result is a foo.exe file. I found a great library that I like to use called bar, which I can reference bar.dll in my project. When I create my project, I have foo.exe and bar.dll in my output directory. Okay bye.
I would like to make the link foo.exe and bar.dll so that they are one assembly, foo.exe. I would rather be able to do this in VS2008, but if I need to resort to a command-line tool like al.exe, I don't mind so much.
source
share