I'm working on a project which requires us to remotely build on some Raspberry Pis. We're using Visual Studio 2017, which has introduced some limitations. I've managed to create two Visual Studio templates, one that can be built on Windows and one which can be remotely built on the Pis.
Every time someone uses my templates, however, they need to create both templates and do a bunch of drag-and-dropping around and then they need to do some configuration themselves (which is a problem with simply using templates).
I'd like to build a simple ".bat" script (or possibly a small C# program if I really have to) that would create both templates and add the needed configurations automatically. Especially since every modification I do to the templates forces everyone to generate both ".vcxproj" files again.
I've found a couple of posts about building through the command line, and a StackOverflow post from 2011 about creating a whole solution from the command line (which Visual Studio couldn't do at the time, but its been 6+ years so that might have changed). I just need to generate the ".vcxproj" files from the templates, nothing fancier. Is that possible through the command line?