IVsBuildableProjectCfg Interface

Manages a project configuration's build operation.

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

Syntax

'Declaration
<InterfaceTypeAttribute()> _
<GuidAttribute("8588E475-BB33-4763-B4BA-0322F839AA3C")> _
Public Interface IVsBuildableProjectCfg
[InterfaceTypeAttribute()]
[GuidAttribute("8588E475-BB33-4763-B4BA-0322F839AA3C")]
public interface IVsBuildableProjectCfg
[InterfaceTypeAttribute()]
[GuidAttribute(L"8588E475-BB33-4763-B4BA-0322F839AA3C")]
public interface class IVsBuildableProjectCfg
[<InterfaceTypeAttribute()>]
[<GuidAttribute("8588E475-BB33-4763-B4BA-0322F839AA3C")>]
type IVsBuildableProjectCfg =  interface end
public interface IVsBuildableProjectCfg

The IVsBuildableProjectCfg type exposes the following members.

Methods

  Name Description
Public method AdviseBuildStatusCallback Registers the environment to receive notifications of build status events.
Public method get_ProjectCfg Obsolete method. Do not use.
Public method QueryStartBuild Determines whether or not a project is able to start a build operation.
Public method QueryStartClean Determines whether or not a project is able to delete all outputs from the previous build, a process known as a clean operation.
Public method QueryStartUpToDateCheck Determines whether or not a project is able to check if the current build is up to date.
Public method QueryStatus Determines whether or not a build operation has completed successfully.
Public method StartBuild Requests that a project begin building.
Public method StartClean Requests that a project begin a clean operation, which is the process of deleting all of the outputs from the previous build.
Public method StartUpToDateCheck Requests that a project begin an up-to-date check to determine whether or not the current build is up to date.
Public method Stop Requests that a project stop building.
Public method UnadviseBuildStatusCallback Cancels the environment's registration to receive notifications of build status events.
Public method Wait Obsolete method. Do not use.

Top

Remarks

IVsBuildableProjectCfg allows a project to be built asynchronously. It is implemented on an object separate from the configuration object that supports IVsProjectCfg. IVsBuildableProjectCfg operates in the background, allowing the environment to query the build status at any time or to stop the build if necessary. Some projects support a check to determine whether or not the current build is up to date.

Notes to Callers

Called by the environment when the user selects the build command and by projects that require configuration information for another project.

See Also

Reference

Microsoft.VisualStudio.Shell.Interop Namespace