0

I'm writing a customized activity for TFS build process workflow, e.g. guideline here.

In my C# CodeActivity .Execute() method, I want to access to SourceDir folder and Drop Folder.

How can I do that?

Nam G VU
  • 33,193
  • 69
  • 233
  • 372

1 Answers1

1

Pass the information which you need as arguments, e.g. SourcesDiriectory for your SourceDir and BuildDetail.DropLocation for your DropFolder to your activity.

Nam G VU
  • 33,193
  • 69
  • 233
  • 372
Isaiah4110
  • 9,855
  • 1
  • 40
  • 56