Skip to content

Instantly share code, notes, and snippets.

@GeorgeDellinger
Created February 10, 2016 15:45
Show Gist options
  • Save GeorgeDellinger/b300773a31111e7314ff to your computer and use it in GitHub Desktop.
Save GeorgeDellinger/b300773a31111e7314ff to your computer and use it in GitHub Desktop.
Workflow Debugging problem in Visual Studio 2015
using (WorkflowRuntime workflowRuntime = new WorkflowRuntime())
{
WorkflowInstance wfi = workflowRuntime.CreateWorkflow(typeof (WorkflowActivity), parameters);
wfi.Start();
}
@GeorgeDellinger
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment