IVsSolutionBuildManager2::StartUpdateProjectConfigurations Method (UInt32, array<IVsHierarchy^>^, UInt32, Int32)
Visual Studio 2015
Builds, cleans, or deploys a list of projects.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
int StartUpdateProjectConfigurations( unsigned int cProjs, array<IVsHierarchy^>^ rgpHierProjs, unsigned int dwFlags, int fSuppressUI )
Parameters
- cProjs
-
Type:
System::UInt32
[in] Count of projects to build.
- rgpHierProjs
-
Type:
array<Microsoft.VisualStudio.Shell.Interop::IVsHierarchy^>^
[in] Specifies list of projects to be built.
- dwFlags
-
Type:
System::UInt32
[in] Double word containing the flags. For more information see VSSOLNBUILDUPDATEFLAGS.
- 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::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell.idl:
HRESULT IVsSolutionBuildManager2::StartUpdateProjectConfigurations( [in] UINT cProjs, [in, size_is(cProjs)] IVsHierarchy *rgpHierProjs[], [in] DWORD dwFlags, [in] BOOL fSuppressUI );
Show: