OEM machine workflow in VS 2010

I have a simple non-sharepoint web application in which I want to add a window workflow. I am using VS 2010 (.Net 4.0). I did this in VS 2008, but I donโ€™t know how to create a state machine workflow in VS 2010. The only option I get when I create it is: 1. Activity designer 2. Activity library 3. WCF Worflow 4. Console

I want this workflow application to be added to my solution so that I can integrate it. Any idea or tutorial will be of great help.

+4
source share
6 answers

The State machine will be released in late April in an update to the .NET Framework 1.

+5
source

You can try Practical Labs for the Windowsยฎ Workflow Foundation in C # and VB.NET. In any case, State Machine Workflow does not exist in the new version of .NET 4.0. You can achieve the same end result with a flowchart.

+1
source

Product Update .Net 4.0 1 has a state machine. Check out the link below.

http://support.microsoft.com/kb/2478063

+1
source

State Machines added in .NET 4.5 (you can download Developer Preview )

+1
source

Officially, there is no machine process workflow in WF4.0, but you can try the CTP State Activity Activity Pack first .

0
source

http://msdn.microsoft.com/en-us/library/ee264171.aspx

It says:

"The .NET Framework version 4 no longer has a state model or workflow model. To model an event-driven workflow, see Flowchart Workflows ."

0
source

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


All Articles