Hello,
I'm using VS2008 C#.NET.
I created 3 different classes of libraries in 3 projects. I wrote an application which uses these libraries (dlls).
What is happening is each project is compiling into a class library. So, I've 3 dlls and 1 exe.
Instead I want to have these in two ways:
- Only class library assembly (dll) which contains 3 of them and 1 exe.
- just one EXE (everything inside it) :: static linking.
How could I do that? I cannot find any options for static linking in VS2008 also please mention commandline options too.