I am fairly new to C# and I working on one C# project/desktop app. This application can be called with various arguments. For instance:
programName.exe -m arg1
programName.exe -m arg2
programName.exe -m arg3
I understand that everything I need to build my project is consisted in .csproj file. Is it possible to configure this file so everytime project is builded three batch files (one per each argument) are created in the build output folder? Or is there some other, more sophisticated way to do this? Point is I would like to have these batch files in output build project.
I am open for suggestions!! Thank you.