Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
31 views

cancel build based on return value of codeactivity

After migrating to TFS/VS2010 I want to redesign/migrate the build process to the new workflow foundation and codea ctivities. Some of my code activities are doing some checks against sharepoint and ...
2
votes
1answer
155 views

How to develop custom activities for Team Build 2010 in an efficient way?

To create a custom workflow activity for Team Build 2010, I have to create a class library that will contains my custom activities, and another one to customize the build process (the workflow). My ...
1
vote
1answer
27 views

How to stop execution of the custom activity until ListItemChanged event occurs on the sharepoint site (list)

I'm building a custom Sharepoint 2010 activity which does some business logic, and at the end of that process, it writes down a list item with some data. I need that activity to hold execution of the ...
1
vote
3answers
56 views

android how to create my own Activity and extend it ?

i need to create a base class that extends activity which does some common tasks in my application and extend my activities from it,in the following form: public BaseActivity extends Activity{....} ...
1
vote
1answer
139 views

Team Build workflow can't load my custom activity

I've been searching for alternatives for hours, and I got some really weirdness going on. So to isolate my problem, I created a very simple code activity that goes inside my xaml template: using ...
1
vote
1answer
114 views

How to Prevent auto-resizing in a custom activity designer?

I hope you can help me with my problem. It's about a custom designer for a WF 4.0 activity, but the problem is essentially in the WPF of the designer. Some background I've created a custom WorkFlow ...
1
vote
3answers
477 views

How can a WF4 Custom Activity determine that its in design mode v. executing mode

I have a WF4 custom activity with a custom designer (WPF). I would like to have slightly different behaviour in the CacheMetaData override depending on if the Activity is in Design or Execution mode. ...
1
vote
1answer
597 views

Binding output of Custom Activity designer to activity argument

I am trying to add a custom activity designer for an activity that I have. The activity looks a little like: public class WaitForUserInputActvitiy : NativeActivity { public ...
1
vote
1answer
313 views

Custom activity designers in Workflow Foundation 3.5: How do they work?

Intent of this post: I realise that Workflow Foundation is not extremely popular on StackOverflow and that there will probably be not many answers, or none at all. This post is intended as a resource ...
1
vote
2answers
1k views

Custom activities in Workflow 4.0: WorkflowElement or Activity/CodeActivity? [closed]

I'm evaluating the new version of Workflow Foundation (4.0), but I'm a bit confused about custom activities. I'm using the Beta 1 bits. I believe that if I want to create a custom activity I should ...
0
votes
1answer
67 views

Custome activity buid by an activity file

How can I use custom code (activity file not codeactivity neither activitydesginer ) as an Activity inside a Reshosted workflow designer? I was doing the following for any activity, which I build for ...
0
votes
1answer
388 views

InvokeProcess custom activity does not invoke

I'm doing my first steps on Customizing the TFS builds. I created an InvokeProcess that calls a batch file. I see in the log that the batch file is called, but I do not see that the batch file is ...
0
votes
1answer
82 views

Designer rehosting questions

I am trying to rehost the wf designer inside a wpf window. I have build custom activities and activity designers. I can't drag and drop onto the workflow custom activity I don't know how, And I ...
0
votes
1answer
153 views

Reading build variable using Custom code activty

I have a build template with variables created and the values are set in the build template itself. I have another custom activity in the same build template. My custom activity will read an XML file ...
0
votes
1answer
378 views

In WF4, how to define a custom activity that can be the scope of a Variable?

When I rehost a designer, I can declare variables and their scopes. However, not all activities can be the scope of a variable. I notice Sequence, Parallel, PickBranch can be the host, but Pick, If, ...
0
votes
2answers
567 views

Workflow Foundation 4 - Results of ActivityFunc<bool> always false even though Execute Method shows true

Ello, I'm having an issue with a custom activity that preforms an evaluation of a `ActivityFunc ` and returns false even though it is evaluated in Execute to be true. Here is my activity using ...