Essentially, what I want to do, is to be able to write my program commandline within the msbuild file itself. This could have many advantages, like being able to use different commandline depending on $Conditions and being able to have them saved directly in the .csproj for posterity and version control.
Is it possible? Pseudo code:
<Commandline>
/test=test /Name=test /Mode=whatever /lotsMore=more,more
</Commandline>
Then the .csproj this is in, should be using this commandline when executed.