Share via


Disabling the Visual Studio Debugger for Windows Workflow Foundation

By default, the Visual Studio 2008 Debugger for Windows Workflow Foundation is enabled for a host process. To disable workflow debugging, you must explicitly turn it off by adding a "DisableWorkflowDebugging" entry to system.diagnostics switches in the host configuration file.

The following example shows how to modify the host configuration file to disable workflow debugging.

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
   <system.diagnostics>
      <switches>
         <add name="DisableWorkflowDebugging" value="true"/>
      </switches>
   </system.diagnostics>
</configuration>

See Also

Concepts

Invoking the Visual Studio Debugger for Windows Workflow Foundation

Other Resources

Debugging Workflows

Copyright © 2007 by Microsoft Corporation. All rights reserved.