Created
February 10, 2016 15:45
-
-
Save GeorgeDellinger/b300773a31111e7314ff to your computer and use it in GitHub Desktop.
Workflow Debugging problem in Visual Studio 2015
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using (WorkflowRuntime workflowRuntime = new WorkflowRuntime()) | |
{ | |
WorkflowInstance wfi = workflowRuntime.CreateWorkflow(typeof (WorkflowActivity), parameters); | |
wfi.Start(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Developer is able to run the program in the IDE or at a command prompt but if trying to debug the application they will never make it past the CreateWorkflow line. Must add the DisableWorkflowDebugging flag to the app.config.