Meta.MetaPackage.IVsUpdateSolutionEvents2 C# (CSharp) Method

IVsUpdateSolutionEvents2() private method

private IVsUpdateSolutionEvents2 ( int &pfCancelUpdate ) : int
pfCancelUpdate int
return int
        int IVsUpdateSolutionEvents2.UpdateSolution_Begin(ref int pfCancelUpdate)
        {
            if(isProfilingBuildTime== 1 || isProfilingInstantiations == 1)
            {
                string message = "Another build is in progress, please cancel or wait until that build is completed before initiating a new build.";
                string caption = "Build Already in Progress...";
                MessageBox.Show(message, caption, MessageBoxButtons.OK, MessageBoxIcon.Hand);
                pfCancelUpdate = 1;
            }

            return VSConstants.S_OK;
        }

Same methods

MetaPackage::IVsUpdateSolutionEvents2 ( ) : int
MetaPackage::IVsUpdateSolutionEvents2 ( IVsHierarchy pIVsHierarchy ) : int
MetaPackage::IVsUpdateSolutionEvents2 ( IVsHierarchy pHierProj, IVsCfg pCfgProj, IVsCfg pCfgSln, uint dwAction, int &pfCancel ) : int
MetaPackage::IVsUpdateSolutionEvents2 ( IVsHierarchy pHierProj, IVsCfg pCfgProj, IVsCfg pCfgSln, uint dwAction, int fSuccess, int fCancel ) : int
MetaPackage::IVsUpdateSolutionEvents2 ( int fSucceeded, int fModified, int fCancelCommand ) : int