public int OnBeforeDocumentWindowShow(uint docCookie, int fFirstShow, IVsWindowFrame pFrame) { ThreadHelper.JoinableTaskFactory.Run(async() => await ConstFinder.ReloadConstsAsync()); return(VSConstants.S_OK); }
public int OnAfterSave(uint docCookie) { ThreadHelper.JoinableTaskFactory.Run(async() => await ConstFinder.ReloadConstsAsync()); return(VSConstants.S_OK); }