public int OnAfterOpenSolution(object pUnkReserved, int fNewSolution)
        {
            _logger?.LogEventMessage($"NewSolution: {Convert.ToBoolean(fNewSolution)}");

            AfterOpenSolution?.Invoke(this, new SolutionOpenedEventArgs(Convert.ToBoolean(fNewSolution)));
            return(VSConstants.S_OK);
        }
Beispiel #2
0
 protected void OnAfterSolutionLoad()
 {
     AfterOpenSolution?.Invoke();
 }
Beispiel #3
0
 int IVsSolutionEvents.OnAfterOpenSolution(object pUnkReserved, int fNewSolution)
 {
     AfterOpenSolution?.Invoke(this, EventArgs.Empty);
     return(VSConstants.S_OK);
 }
 public int OnAfterOpenSolution(object pUnkReserved, int fNewSolution)
 {
     return(AfterOpenSolution?.Invoke(pUnkReserved, fNewSolution) ?? VSConstants.S_OK);
 }