I have a console application that I have created in C#. I have specifically separated it out into 3 solutions:-
- Class Library
- Unit Tests for Class Library
- Console Application
The console application is specifically dumb. It just takes the arguments and passed them to the classes in my class library.
In its current form I have to deploy the exe with the dll for my class library. Now I would rather be able to deploy the exe stand alone without the added complication of the the dependency on the dll. I want to keep the class library separate as the functionality in it is useful for other applications I am building.
So my question is; is there a way to bundle dependent libraries in with the exe when I build the console application?
Thanks.