Meta.MetaPackage.IVsUpdateSolutionEvents C# (CSharp) Method

IVsUpdateSolutionEvents() private method

private IVsUpdateSolutionEvents ( int &pfCancelUpdate ) : int
pfCancelUpdate int
return int
        int IVsUpdateSolutionEvents.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::IVsUpdateSolutionEvents ( ) : int
MetaPackage::IVsUpdateSolutionEvents ( IVsHierarchy pIVsHierarchy ) : int
MetaPackage::IVsUpdateSolutionEvents ( int fSucceeded, int fModified, int fCancelCommand ) : int