Freigeben über


IVsSolutionBuildManager2.StartSimpleUpdateSolutionConfiguration Method (UInt32, UInt32, Int32)

Builds, cleans, or deploys a list of solutions.

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

Syntax

'Declaration
Function StartSimpleUpdateSolutionConfiguration ( _
    dwFlags As UInteger, _
    dwDefQueryResults As UInteger, _
    fSuppressUI As Integer _
) As Integer
'Usage
Dim instance As IVsSolutionBuildManager2
Dim dwFlags As UInteger
Dim dwDefQueryResults As UInteger
Dim fSuppressUI As Integer
Dim returnValue As Integer

returnValue = instance.StartSimpleUpdateSolutionConfiguration(dwFlags, _
    dwDefQueryResults, fSuppressUI)
int StartSimpleUpdateSolutionConfiguration(
    uint dwFlags,
    uint dwDefQueryResults,
    int fSuppressUI
)
int StartSimpleUpdateSolutionConfiguration(
    [InAttribute] unsigned int dwFlags, 
    [InAttribute] unsigned int dwDefQueryResults, 
    [InAttribute] int fSuppressUI
)
abstract StartSimpleUpdateSolutionConfiguration : 
        dwFlags:uint32 * 
        dwDefQueryResults:uint32 * 
        fSuppressUI:int -> int 
function StartSimpleUpdateSolutionConfiguration(
    dwFlags : uint, 
    dwDefQueryResults : uint, 
    fSuppressUI : int
) : int

Parameters

  • fSuppressUI
    Type: System.Int32
    [in] Set to true to use the default response to any dialogs, which will not be displayed; otherwise false.

Return Value

Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Implements

IVsSolutionBuildManager.StartSimpleUpdateSolutionConfiguration(UInt32, UInt32, Int32)

Remarks

COM Signature

From vsshell.idl:

HRESULT IVsSolutionBuildManager2::StartSimpleUpdateSolutionConfiguration(
   [in] DWORD dwFlags,
   [in] DWORD dwDefQueryResults,
   [in] BOOL fSuppressUI
);

StartSimpleUpdateSolutionConfiguration is a variant of the update command and allows you to build, clean, deploy, or launch a single solution configuration. The solution configuration will determine the whole set of projects to be built based on how the solution configuration is defined in the Solution Configuration Property Pages dialog. It is on this dialog that you specify which projects to build and which to deploy. For more information, see Solution Configuration.

.NET Framework Security

See Also

Reference

IVsSolutionBuildManager2 Interface

IVsSolutionBuildManager2 Members

StartSimpleUpdateSolutionConfiguration Overload

Microsoft.VisualStudio.Shell.Interop Namespace