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?
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?
Pass the information which you need as arguments, e.g.
SourcesDiriectory
for yourSourceDir
andBuildDetail.DropLocation
for yourDropFolder
to your activity.