I am developing a set of command line utilities that are very small using C#. For example, I have one application that just prints a line from a config file specified in the PATH variable.
Currently I have one project called utilities under my solution. I was wondering is there was a way to produce multiple exe files from one project. I am looking to do this because there will be about 10 different utilities and I since I already have 6 projects under my solution, I don’t want to clutter it any further.
I would expect to be able to have one main function for each executable to be compiled and specify those in different namespaces.
Thanks for your help!
Maybe you just want to add a solution folder, and put all the utility projects into it?