Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

InvokeProcess missing from the ToolBox?

I want to use InvokeProcess to run a batch file.

Problem is that I can't find InvokeProcess in my ToolBox.

No InvokeProcess

How can I add this to my ToolBox? I need to know what assembly it lives in.

like image 733
Vaccano Avatar asked Aug 24 '11 03:08

Vaccano


1 Answers

It seems you are missing all activities (not just InvokeProcess) from Microsoft.TeamFoundation.Build.Workflow.Activities.

Those are to be found in Microsoft.TeamFoundation.Build.Workflow.dll

Furthermore it seems that in tab "Team Foundation Build Activities" you 're including what per default is the content of tab "Team Foundation LabManagement Activities" (which are members of Microsoft.TeamFoundation.Lab.Workflow.Activities).

In order to add this, just right-click on the tab and click the checkbox in "System.Activities Components":
enter image description here

like image 171
pantelif Avatar answered Oct 13 '22 03:10

pantelif