I'm writing a customized activity for TFS build process workflow, e.g. guideline here.
In my C# CodeActivity .Execute() method, I want to run another activity, e.g. ConvertWorkspaceItem
as descibed here.
How can I do that?
Copyright © 2021 Jogjafile Inc.
Try doing some research with a NativeActivity instead of a CodeActivity, so the execution context allows you to schedule other child activities. E.g.: