Beispiel #1
0
        private void buildEvents_OnBuildBegin(vsBuildScope Scope, vsBuildAction Action)
        {
            _buildScope  = Scope;
            _buildAction = Action;

            _errorListHelper?.Clear();
        }
Beispiel #2
0
 private void ErrorListCmdCallback(object sender, EventArgs e)
 {
     if (OptionsProviderRegistry.CurrentOptions.ErrorCategory.IsTaskError())
     {
         if (_errorListHelper != null)
         {
             _errorListHelper.Clear();
             ResetErrorCount();
         }
     }
 }