0

I am creating a Custom Visual Studio Project Template. This custom project template consists of two folders which needs to contain some binaries. These binaries has to copied from some server location. As these binaries will be updated periodically i can't simply enclose them while creating the custom project template. I would like to copy them from server location whenever the developer selects this custom project template the two folders inside their Visual Studio might get the latest binaries from the server location. I have to do this with PowerShell script only. Can someone help me on how to execute PowerShell scripts while creating custom project template in Visual Studio.

Jaganmohanreddy
  • 391
  • 4
  • 19

1 Answers1

0

Why don't you create your own custom nuget packages? Then you only have to "refresh nuget packages" after creating the project from template.

Dominic Jonas
  • 4,717
  • 1
  • 34
  • 77