InvokeProcess missing in ToolBox?

I want to use InvokeProcess to run a batch file.

The problem is that I cannot find InvokeProcess in my toolbar.

No InvokeProcess

How can I add this to my toolbar? I need to know in which assembly he lives.

+6
source share
1 answer

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

These files can be found in Microsoft.TeamFoundation.Build.Workflow.dll

In addition, it looks like the Team Foundation Build Activities tab is where you include what is by default the contents of the Team Foundation LabManagement Activities tab (which are members of Microsoft.TeamFoundation.Lab.Workflow.Activities).

To add this, simply right-click on the tab and check the "System.Activities Components" box:
enter image description here

+8
source

Source: https://habr.com/ru/post/895718/


All Articles