IVsDebuggableProjectCfg Interface

Enables a built configuration to be started and run by the debugger.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)

Syntax

'Declaration
<GuidAttribute("2BC88742-618D-46B2-B65D-67AC990E3215")> _
<InterfaceTypeAttribute()> _
Public Interface IVsDebuggableProjectCfg _
    Inherits IVsProjectCfg
[GuidAttribute("2BC88742-618D-46B2-B65D-67AC990E3215")]
[InterfaceTypeAttribute()]
public interface IVsDebuggableProjectCfg : IVsProjectCfg
[GuidAttribute(L"2BC88742-618D-46B2-B65D-67AC990E3215")]
[InterfaceTypeAttribute()]
public interface class IVsDebuggableProjectCfg : IVsProjectCfg
[<GuidAttribute("2BC88742-618D-46B2-B65D-67AC990E3215")>]
[<InterfaceTypeAttribute()>]
type IVsDebuggableProjectCfg =  
    interface
        interface IVsProjectCfg
    end
public interface IVsDebuggableProjectCfg extends IVsProjectCfg

The IVsDebuggableProjectCfg type exposes the following members.

Methods

  Name Description
Public method DebugLaunch Starts the debugger.
Public method EnumOutputs Obsolete method. Do not use.
Public method get_BuildableProjectCfg Provides access to a configuration's IVsBuildableProjectCfg interface to use to manage the build process.
Public method get_CanonicalName Returns a configuration's canonical name.
Public method get_DisplayName Returns a string that describes the configuration and can be displayed in the environment's UI.
Public method get_IsDebugOnly Obsolete method. Do not use.
Public method get_IsPackaged Obsolete method. Do not use.
Public method get_IsReleaseOnly Obsolete method. Do not use.
Public method get_IsSpecifyingOutputSupported Obsolete method. Do not use.
Public method get_Platform Obsolete method. Do not use.
Public method get_ProjectCfgProvider Obsolete method. Do not use.
Public method get_RootURL Returns a configuration's root URL for its output items.
Public method get_TargetCodePage Obsolete method. Do not use.
Public method get_UpdateSequenceNumber Obsolete method. Do not use.
Public method OpenOutput Obsolete method. Do not use.
Public method QueryDebugLaunch Determines whether the debugger can be launched, given the state of the launch flags.

Top

Remarks

The Start, F5 key combination can be used to run a project's configuration under control of the debugger.

Notes to Implementers

Implemented by projects to allow the debugger to launch a configuration. IVsDebuggableProjectCfg is an optional interface implemented on the configuration object with IVsCfg and IVsProjectCfg.

Notes to Callers

Called by the environment when the user elects to start the debugger by selecting the Start, F5 key combination.

See Also

Reference

Microsoft.VisualStudio.Shell.Interop Namespace