I'm working on a C# project that has a post-build event command line that looks like this:
for /R "$(ProjectDir)TestData\GoldFiles" %%f in ("*.csv") DO
@xcopy "%%f" "R:\Root\$(TargetName)\1.0\TestData\GoldFiles\" /Y
This is my first exposure to Visual Studio Macros. I can understand this well enough to know what it's doing. Now I want to extend the macro to copy subdirectories and their files. Pretty basic stuff. I should be able to figure it out for myself. I thought I would just find and crack open the online Macro Development Guilde, or something like that, but I can't find a guide anywhere.
What's the best way to learn the syntax and development of macros for Visual Studio?