IVsBuildableProjectCfg Interface

Definition

Manages a project configuration's build operation.

public interface class IVsBuildableProjectCfg
public interface class IVsBuildableProjectCfg
__interface IVsBuildableProjectCfg
[System.Runtime.InteropServices.Guid("8588E475-BB33-4763-B4BA-0322F839AA3C")]
[System.Runtime.InteropServices.InterfaceType(1)]
public interface IVsBuildableProjectCfg
[System.Runtime.InteropServices.Guid("8588E475-BB33-4763-B4BA-0322F839AA3C")]
[System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)]
public interface IVsBuildableProjectCfg
[<System.Runtime.InteropServices.Guid("8588E475-BB33-4763-B4BA-0322F839AA3C")>]
[<System.Runtime.InteropServices.InterfaceType(1)>]
type IVsBuildableProjectCfg = interface
[<System.Runtime.InteropServices.Guid("8588E475-BB33-4763-B4BA-0322F839AA3C")>]
[<System.Runtime.InteropServices.InterfaceType(System.Runtime.InteropServices.ComInterfaceType.InterfaceIsIUnknown)>]
type IVsBuildableProjectCfg = interface
Public Interface IVsBuildableProjectCfg
Attributes

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.

Methods

AdviseBuildStatusCallback(IVsBuildStatusCallback, UInt32)

Registers the environment to receive notifications of build status events.

get_ProjectCfg(IVsProjectCfg)

Obsolete method. Do not use.

QueryStartBuild(UInt32, Int32[], Int32[])

Determines whether or not a project is able to start a build operation.

QueryStartClean(UInt32, Int32[], Int32[])

Determines whether or not a project is able to delete all outputs from the previous build, a process known as a clean operation.

QueryStartUpToDateCheck(UInt32, Int32[], Int32[])

Determines whether or not a project is able to check if the current build is up to date.

QueryStatus(Int32)

Determines whether or not a build operation has completed successfully.

StartBuild(IVsOutputWindowPane, UInt32)

Requests that a project begin building.

StartClean(IVsOutputWindowPane, UInt32)

Requests that a project begin a clean operation, which is the process of deleting all of the outputs from the previous build.

StartUpToDateCheck(IVsOutputWindowPane, UInt32)

Requests that a project begin an up-to-date check to determine whether or not the current build is up to date.

Stop(Int32)

Requests that a project stop building.

UnadviseBuildStatusCallback(UInt32)

Cancels the environment's registration to receive notifications of build status events.

Wait(UInt32, Int32)

Obsolete method. Do not use.

Applies to