├── .gitattributes ├── .github └── workflows │ └── dotnet-main.yml ├── .gitignore ├── AddIn ├── Rubberduck.Main │ ├── App.cs │ ├── ComClientLibrary │ │ └── UI │ │ │ ├── DockableWindowHost.cs │ │ │ └── IOleWrapper.cs │ ├── Commands │ │ ├── AboutCommand.cs │ │ ├── NewWorkspaceCommand.cs │ │ ├── SettingsCommand.cs │ │ ├── ShowApplicationTipsCommand.cs │ │ └── ShowRubberduckEditorCommand.cs │ ├── Ducky.ico │ ├── Environment │ │ └── RubberduckFoldersService.cs │ ├── Extension.cs │ ├── IVBIDEAddIn.cs │ ├── NLog-addin.config │ ├── NLog.dll.nlog │ ├── NLog.xsd │ ├── Properties │ │ └── launchSettings.json │ ├── RPC │ │ ├── EditorServer │ │ │ ├── EditorClientApp.cs │ │ │ ├── EditorClientService.cs │ │ │ ├── EditorServerProcess.cs │ │ │ ├── EditorServerProcessService.cs │ │ │ └── Handlers │ │ │ │ ├── ApplyWorkspaceEditHandler.cs │ │ │ │ ├── DocumentChangesExtensions.cs │ │ │ │ └── WorkspaceFoldersHandler.cs │ │ ├── IServerProcessService.cs │ │ └── UpdateServer │ │ │ └── UpdateServerProcess.cs │ ├── Root │ │ ├── LogLevelService.cs │ │ ├── ProjectInfoProvider.cs │ │ ├── RootComWrapperFactory.cs │ │ ├── RubberduckServicesBuilder.cs │ │ └── VbeProvider.cs │ ├── Rubberduck.Main.csproj │ ├── RubberduckAddIn.cs │ └── StartupFailedException.cs ├── Rubberduck.Unmanaged │ ├── Abstract │ │ ├── IVbeEvents.cs │ │ ├── SafeComWrappers │ │ │ ├── IComCollection.cs │ │ │ ├── IComIndexedProperty.cs │ │ │ ├── IEventSource.cs │ │ │ ├── ISafeComWrapper.cs │ │ │ ├── ISafeEventedComWrapper.cs │ │ │ ├── Office │ │ │ │ ├── CommandBarButtonClickEventArgs.cs │ │ │ │ ├── CommandBarControlCaptionGuard.cs │ │ │ │ ├── Enums │ │ │ │ │ ├── ButtonState.cs │ │ │ │ │ ├── ButtonStyle.cs │ │ │ │ │ ├── CommandBarPosition.cs │ │ │ │ │ ├── CommandBarType.cs │ │ │ │ │ └── ControlType.cs │ │ │ │ ├── ICommandBar.cs │ │ │ │ ├── ICommandBarButton.cs │ │ │ │ ├── ICommandBarControl.cs │ │ │ │ ├── ICommandBarControls.cs │ │ │ │ ├── ICommandBarPopup.cs │ │ │ │ └── ICommandBars.cs │ │ │ └── VB │ │ │ │ ├── Enums │ │ │ │ ├── CodePaneView.cs │ │ │ │ ├── EnvironmentMode.cs │ │ │ │ ├── MSAccessComponentType.cs │ │ │ │ ├── ProcKind.cs │ │ │ │ ├── ProjectProtection.cs │ │ │ │ ├── ProjectType.cs │ │ │ │ ├── ProjectTypes.cs │ │ │ │ ├── ReferenceKind.cs │ │ │ │ ├── VBEKind.cs │ │ │ │ ├── WindowKind.cs │ │ │ │ └── WindowState.cs │ │ │ │ ├── HostAutoMacro.cs │ │ │ │ ├── HostDocument.cs │ │ │ │ ├── IAddIn.cs │ │ │ │ ├── IAddIns.cs │ │ │ │ ├── IApplication.cs │ │ │ │ ├── ICodeModule.cs │ │ │ │ ├── ICodePane.cs │ │ │ │ ├── ICodePanes.cs │ │ │ │ ├── ICommandBarButtonEvents.cs │ │ │ │ ├── ICommandBarEvents.cs │ │ │ │ ├── IControl.cs │ │ │ │ ├── IControls.cs │ │ │ │ ├── IEvents.cs │ │ │ │ ├── IHostApplication.cs │ │ │ │ ├── ILinkedWindows.cs │ │ │ │ ├── IProperties.cs │ │ │ │ ├── IProperty.cs │ │ │ │ ├── IReference.cs │ │ │ │ ├── IReferences.cs │ │ │ │ ├── IUserForm.cs │ │ │ │ ├── IVBComponent.cs │ │ │ │ ├── IVBComponents.cs │ │ │ │ ├── IVBE.cs │ │ │ │ ├── IVBProject.cs │ │ │ │ ├── IVBProjects.cs │ │ │ │ ├── IWindow.cs │ │ │ │ ├── IWindows.cs │ │ │ │ └── VBProjectExtensions.cs │ │ └── SourceCodeProvider │ │ │ ├── IComponentSourceCodeHandler.cs │ │ │ ├── ISourceCodeHandler.cs │ │ │ ├── ISourceCodeProvider.cs │ │ │ └── ITempSourceFileHandler.cs │ ├── ComMessagePumper.cs │ ├── ComSafeBase.cs │ ├── ComSafeBaseDebug.cs │ ├── ComSafeManager.cs │ ├── ComWrapperEnumerator.cs │ ├── CommandBarLocation.cs │ ├── CommandBarSite.cs │ ├── DispatcherEventArgs.cs │ ├── Events │ │ ├── ComponentEventArgs.cs │ │ ├── ComponentRenamedEventArgs.cs │ │ ├── ProjectEventArgs.cs │ │ ├── ProjectRenamedEventArgs.cs │ │ ├── ReferenceEventArgs.cs │ │ ├── SubClassingWindowEventArgs.cs │ │ ├── VBENativeServices.cs │ │ └── WindowChangedEventArgs.cs │ ├── FileSystemProvider.cs │ ├── HostApplicationBase.cs │ ├── IComSafe.cs │ ├── IEnumVARIANT.cs │ ├── IProjectsProvider.cs │ ├── IProjectsRepository.cs │ ├── Model │ │ ├── Abstract │ │ │ └── IQualifiedModuleName.cs │ │ ├── CodeString.cs │ │ ├── ComponentType.cs │ │ ├── QualifiedMemberName.cs │ │ ├── QualifiedModuleName.cs │ │ ├── QualifiedModuleNameExtensions.cs │ │ ├── QualifiedSelection.cs │ │ ├── ReferenceInfo.cs │ │ └── Selection.cs │ ├── NonDisposingDecorators │ │ ├── AddInNonDisposingDecorator.cs │ │ ├── CommandBarsNonDisposingDecorator.cs │ │ ├── NonDisposingDecoratorBase.cs │ │ ├── VBComponentNonDisposingDecorator.cs │ │ ├── VBComponentsNonDisposingDecorator.cs │ │ ├── VBProjectNonDisposingDecorator.cs │ │ ├── VBProjectsNonDisposingDecorator.cs │ │ └── VbeNonDisposingDecorator.cs │ ├── ProjectsRepository.cs │ ├── ReferenceEqualityComparer.cs │ ├── Registration │ │ ├── RubberduckGuid.cs │ │ ├── RubberduckProgId.cs │ │ └── WellKnownDispIds.cs │ ├── RegistryWrapper.cs │ ├── Rubberduck.Unmanaged.csproj │ ├── SafeComWrapper.cs │ ├── SafeEventedComWrapper.cs │ ├── SafeIDispatchWrapper.cs │ ├── SafeRedirectedEventedComWrapper.cs │ ├── StringExtensions.cs │ ├── StrongComSafe.cs │ ├── TypeLibs │ │ ├── Abstract │ │ │ ├── IDispatch.cs │ │ │ ├── ITypeInfoFunction.cs │ │ │ ├── ITypeInfoFunctionCollection.cs │ │ │ ├── ITypeInfoImplementedInterfacesCollection.cs │ │ │ ├── ITypeInfoInternal.cs │ │ │ ├── ITypeInfoVBEExtensions.cs │ │ │ ├── ITypeInfoVariable.cs │ │ │ ├── ITypeInfoVariablesCollection.cs │ │ │ ├── ITypeInfoWrapper.cs │ │ │ ├── ITypeInfoWrapperCollection.cs │ │ │ ├── ITypeLibReference.cs │ │ │ ├── ITypeLibReferenceCollection.cs │ │ │ ├── ITypeLibVBEExtensions.cs │ │ │ ├── ITypeLibWrapper.cs │ │ │ ├── ITypeLibWrapperProvider.cs │ │ │ └── IVBETypeLibsAPI.cs │ │ ├── DebugInternal │ │ │ ├── TypeInfoWrapperTracer.cs │ │ │ └── TypeLibWrapperTracer.cs │ │ ├── Public │ │ │ ├── TypeLibWrapperProvider.cs │ │ │ └── TypeLibsAPI.cs │ │ ├── TypeApiFactory.cs │ │ ├── TypeInfoConstantsCollection.cs │ │ ├── TypeInfoFunction.cs │ │ ├── TypeInfoFunctionCollection.cs │ │ ├── TypeInfoImplementedInterfacesCollection.cs │ │ ├── TypeInfoVBEExtensions.cs │ │ ├── TypeInfoVariable.cs │ │ ├── TypeInfoVariablesCollection.cs │ │ ├── TypeInfoWrapper.cs │ │ ├── TypeInfoWrapperCollection.cs │ │ ├── TypeInfoWrapperHelpers.cs │ │ ├── TypeLibReference.cs │ │ ├── TypeLibReferenceCollection.cs │ │ ├── TypeLibVBEExtensions.cs │ │ ├── TypeLibWrapper.cs │ │ ├── Unmanaged │ │ │ ├── AddressableVariables.cs │ │ │ ├── ComHelper.cs │ │ │ ├── ComPointer.cs │ │ │ ├── IDispatchHelper.cs │ │ │ ├── RDMarshal.cs │ │ │ ├── TypeInfoInternalSelfMarshalForwarderBase.cs │ │ │ ├── TypeLibInternalSelfMarshalForwarderBase.cs │ │ │ ├── UnmanagedMemoryHelper.cs │ │ │ └── VBETypeLibsIterator.cs │ │ ├── Utility │ │ │ ├── DocClassHelper.cs │ │ │ ├── IDisposableList.cs │ │ │ ├── IndexedCollection.cs │ │ │ ├── SimpleCustomTypeLibrary.cs │ │ │ ├── TypeInfoDocumentationExtensions.cs │ │ │ ├── TypeKindMapper.cs │ │ │ └── VarDescExtensions.cs │ │ └── VBETypeLibsAccessor.cs │ ├── UIContext │ │ ├── IUiContextProvider.cs │ │ ├── IUiDispatcher.cs │ │ ├── UiContextProvider.cs │ │ └── UiDispatcher.cs │ ├── VBERuntime │ │ ├── IVbeNativeApi.cs │ │ ├── Settings │ │ │ ├── IVBESettings.cs │ │ │ └── VBESettings.cs │ │ ├── VBEDllVersion.cs │ │ ├── Vb6NativeApi.cs │ │ ├── VbeNativeApi6.cs │ │ ├── VbeNativeApi7.cs │ │ └── VbeNativeApiAccessor.cs │ ├── WeakComSafe.cs │ └── WindowsApi │ │ ├── CodePaneSubclass.cs │ │ ├── DesignerWindowSubclass.cs │ │ ├── EnumHelper.cs │ │ ├── FocusSource.cs │ │ ├── IFocusProvider.cs │ │ ├── IWindowEventProvider.cs │ │ ├── Kernel32.cs │ │ ├── NativeMethods.cs │ │ ├── ObjId.cs │ │ ├── ReflectionIgnoreAttribute.cs │ │ ├── SHCore.cs │ │ ├── SubclassManager.cs │ │ ├── SubclassingWindow.cs │ │ ├── User32.cs │ │ ├── VbeAttachableSubclass.cs │ │ ├── WM.cs │ │ ├── WinEvent.cs │ │ ├── WinEventFlags.cs │ │ ├── WindowLocator.cs │ │ ├── WindowType.cs │ │ └── WindowsHook.cs ├── Rubberduck.VBEditor.VB6 │ ├── ExternalFileTempSourceFileHandlerEmulator.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Providers │ │ ├── VB6AddInProvider.cs │ │ └── VB6VBEProvider.cs │ ├── Rubberduck.VBEditor.VB6.csproj │ ├── SafeComWrappers │ │ ├── Office │ │ │ ├── CommandBar.cs │ │ │ ├── CommandBarButton.cs │ │ │ ├── CommandBarControl.cs │ │ │ ├── CommandBarControls.cs │ │ │ ├── CommandBarPopup.cs │ │ │ └── CommandBars.cs │ │ └── VB │ │ │ ├── AddIn.cs │ │ │ ├── AddIns.cs │ │ │ ├── Application.cs │ │ │ ├── CodeModule.cs │ │ │ ├── CodePane.cs │ │ │ ├── CodePanes.cs │ │ │ ├── CommandBarButtonEvents.cs │ │ │ ├── CommandBarEvents.cs │ │ │ ├── Events.cs │ │ │ ├── LinkedWindows.cs │ │ │ ├── Properties.cs │ │ │ ├── Property.cs │ │ │ ├── Reference.cs │ │ │ ├── References.cs │ │ │ ├── SelectedVBControls.cs │ │ │ ├── VBComponent.cs │ │ │ ├── VBComponents.cs │ │ │ ├── VBControl.cs │ │ │ ├── VBControls.cs │ │ │ ├── VBE.cs │ │ │ ├── VBForm.cs │ │ │ ├── VBProject.cs │ │ │ ├── VBProjects.cs │ │ │ ├── Window.cs │ │ │ └── Windows.cs │ └── app.config ├── Rubberduck.VBEditor.VBA │ ├── Providers │ │ ├── VBAAddInProvider.cs │ │ └── VBAVBEProvider.cs │ ├── Rubberduck.VBEditor.VBA.csproj │ ├── SafeComWrappers │ │ ├── Application │ │ │ ├── AccessApp.cs │ │ │ ├── AutoCADApp.cs │ │ │ ├── CorelDRAWApp.cs │ │ │ ├── ExcelApp.cs │ │ │ ├── FallbackApp.cs │ │ │ ├── OutlookApp.cs │ │ │ ├── PowerPointApp.cs │ │ │ ├── ProjectApp.cs │ │ │ ├── PublisherApp.cs │ │ │ ├── SolidWorksApp.cs │ │ │ ├── Visio.cs │ │ │ └── WordApp.cs │ │ ├── Office │ │ │ ├── CommandBar.cs │ │ │ ├── CommandBarButton.cs │ │ │ ├── CommandBarControl.cs │ │ │ ├── CommandBarControls.cs │ │ │ ├── CommandBarPopup.cs │ │ │ └── CommandBars.cs │ │ └── VB │ │ │ ├── AddIn.cs │ │ │ ├── AddIns.cs │ │ │ ├── Application.cs │ │ │ ├── CodeModule.cs │ │ │ ├── CodePane.cs │ │ │ ├── CodePanes.cs │ │ │ ├── Control.cs │ │ │ ├── Controls.cs │ │ │ ├── LinkedWindows.cs │ │ │ ├── Properties.cs │ │ │ ├── Property.cs │ │ │ ├── Reference.cs │ │ │ ├── References.cs │ │ │ ├── UserForm.cs │ │ │ ├── VBComponent.cs │ │ │ ├── VBComponents.cs │ │ │ ├── VBE.cs │ │ │ ├── VBProject.cs │ │ │ ├── VBProjects.cs │ │ │ ├── Window.cs │ │ │ └── Windows.cs │ ├── TempSourceFileHandler.cs │ └── app.config └── Rubberduck.VBEditor │ ├── Extensions │ ├── KeyValuePairExtensions.cs │ ├── MSAccessComponentTypeExtensions.cs │ ├── VBComponentExtensions.cs │ └── VBProjectExtensions.cs │ ├── Factories │ ├── AddInFactory.cs │ ├── ISafeComWrapperProvider.cs │ └── VBEFactory.cs │ ├── Rubberduck.VBEditor.csproj │ ├── UI │ └── OfficeMenus │ │ ├── AxHostConverter.cs │ │ ├── ComCommandBase.cs │ │ ├── CommandBarMenuBuilder.cs │ │ ├── CommandMenuItemBase.cs │ │ ├── ICommandMenuItem.cs │ │ ├── IMenuCommand.cs │ │ ├── IMenuItem.cs │ │ ├── IParentMenuItem.cs │ │ ├── ParentMenuItemBase.cs │ │ └── RubberduckMenu │ │ ├── AboutCommandMenuItem.cs │ │ ├── RubberduckParentMenu.cs │ │ ├── SettingsCommandMenuItem.cs │ │ └── ShowRubberduckEditorCommandMenuItem.cs │ ├── Utility │ ├── AddComponentService.cs │ ├── DisposalActionContainer.cs │ ├── IAddComponentService.cs │ ├── IRequiredBinaryFilesFromFileNameExtractor.cs │ ├── ISelectionProvider.cs │ ├── ISelectionService.cs │ ├── ModuleNameFromFileExtractor.cs │ └── UserFormRequiredBinaryFileNameExtractor.cs │ ├── VbeCommandBarMenuNames.cs │ └── app.config ├── Client ├── Rubberduck.Editor │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Commands │ │ ├── CloseAllDocumentsCommand.cs │ │ ├── CloseDocumentCommand.cs │ │ ├── CloseWorkspaceCommand.cs │ │ ├── ExitCommand.cs │ │ ├── FileCommandHandlers.cs │ │ ├── OpenDocumentCommand.cs │ │ ├── OpenProjectCommand.cs │ │ ├── SaveAllDocumentsCommand.cs │ │ ├── SaveAsProjectTemplateCommand.cs │ │ ├── SaveDocumentAsCommand.cs │ │ ├── SaveDocumentCommand.cs │ │ ├── ShutdownServerCommand.cs │ │ ├── SynchronizeWorkspaceCommand.cs │ │ ├── ToolsCommandHandlers.cs │ │ └── ViewCommandHandlers.cs │ ├── Common │ │ ├── ClipboardWriter.cs │ │ ├── ExportFormatter.cs │ │ └── LogLevelHelper.cs │ ├── EditorServerApp.cs │ ├── IPresenter.cs │ ├── LanguageClientApp.cs │ ├── MessageActionItemExtensions.cs │ ├── NLog-editor.config │ ├── RPC │ │ ├── DocumentChangesExtensions.cs │ │ ├── EditorServer │ │ │ ├── EditorServerState.cs │ │ │ └── Handlers │ │ │ │ ├── Lifecycle │ │ │ │ ├── ExitHandler.cs │ │ │ │ ├── InitializedHandler.cs │ │ │ │ ├── SetTraceHandler.cs │ │ │ │ └── ShutdownHandler.cs │ │ │ │ └── Workspace │ │ │ │ ├── DidChangeConfigurationHandler.cs │ │ │ │ ├── ExecuteCommandHandler.cs │ │ │ │ └── ExecuteHostCommandHandler.cs │ │ ├── LanguageServerClient │ │ │ ├── Handlers │ │ │ │ ├── ApplyWorkspaceEditHandler.cs │ │ │ │ ├── ExecuteCommandHandler.cs │ │ │ │ ├── LogMessageHandler.cs │ │ │ │ ├── LogTraceHandler.cs │ │ │ │ ├── PublishDiagnosticsHandler.cs │ │ │ │ ├── SemanticTokensRefreshHandler.cs │ │ │ │ ├── ShowMessageHandler.cs │ │ │ │ ├── ShowMessageRequestHandler.cs │ │ │ │ ├── TelemetryEventHandler.cs │ │ │ │ ├── WorkDoneProgressCancelHandler.cs │ │ │ │ ├── WorkDoneProgressCreateHandler.cs │ │ │ │ ├── WorkDoneProgressHandler.cs │ │ │ │ └── WorkspaceFoldersHandler.cs │ │ │ └── LanguageClientService.cs │ │ ├── LanguageServerProcess.cs │ │ └── TelemetryServer │ │ │ └── TelemetryServerProcess.cs │ ├── Rubberduck.Editor.csproj │ ├── Rubberduck.Editor.vba-default.xshd │ ├── Services │ │ └── WorkspaceClientService.cs │ ├── Shell │ │ ├── ChildWindowViewModel.cs │ │ ├── Dialogs │ │ │ └── SaveAsTemplateWindowViewModel.cs │ │ ├── Document │ │ │ ├── CodeDocumentTabViewModel.cs │ │ │ ├── DocumentTabTemplateSelector.cs │ │ │ ├── DocumentTabViewModel.cs │ │ │ ├── MarkdownDocumentTabViewModel.cs │ │ │ ├── RubberduckProjectDocumentTabViewModel.cs │ │ │ ├── TextDocumentTabViewModel.cs │ │ │ ├── VB6CodeDocumentTabViewModel.cs │ │ │ └── VBACodeDocumentTabViewModel.cs │ │ ├── InterTabClient.cs │ │ ├── Partitions.cs │ │ ├── ShellWindowViewModel.cs │ │ ├── Splash │ │ │ ├── SplashService.cs │ │ │ └── SplashViewModel.cs │ │ ├── StatusBar │ │ │ ├── ActiveDocumentStatusViewModel.cs │ │ │ └── StatusBarViewModel.cs │ │ ├── Tools │ │ │ ├── ServerTrace │ │ │ │ ├── LanguageServerTraceViewModel.cs │ │ │ │ └── ServerTraceViewModel.cs │ │ │ └── WorkspaceExplorer │ │ │ │ ├── WorkspaceExplorerCommandHandlers.cs │ │ │ │ ├── WorkspaceExplorerViewModel.cs │ │ │ │ ├── WorkspaceFileViewModel.cs │ │ │ │ ├── WorkspaceFolderViewModel.cs │ │ │ │ ├── WorkspaceSourceFileViewModel.cs │ │ │ │ ├── WorkspaceTreeNodeViewModel.cs │ │ │ │ └── WorkspaceViewModel.cs │ │ └── WindowChromeViewModel.cs │ └── ducky.ico └── Rubberduck.UI │ ├── ApplicationTips │ ├── ApplicationTipsWindow.xaml │ └── ApplicationTipsWindow.xaml.cs │ ├── Behaviors │ ├── BindableSelectedItemBehavior.cs │ ├── MaskedInputBehavior.cs │ └── ScrollViewerCorrector.cs │ ├── Chrome │ └── IWindowChromeViewModel.cs │ ├── CodeAction │ ├── DuckyButton.xaml │ └── DuckyButton.xaml.cs │ ├── Command │ ├── Abstract │ │ ├── AsyncDelegateCommand.cs │ │ ├── CommandBase.cs │ │ ├── CommandHandlers.cs │ │ └── DelegateCommand.cs │ ├── BrowseFileModel.cs │ ├── NewProjectCommand.cs │ ├── SharedHandlers │ │ ├── CloseToolWindowCommand.cs │ │ ├── DialogCommandHandlers.cs │ │ ├── MessageActionCommand.cs │ │ ├── OpenLogFileCommand.cs │ │ ├── ShowRubberduckSettingsCommand.cs │ │ ├── SystemCommandHandlers.cs │ │ └── ToolWindowCommandHandlers.cs │ ├── ShellProvider.cs │ ├── ShowLanguageServerTraceCommand.cs │ ├── ShowToolWindowCommand.cs │ ├── ShowWorkspaceExplorerCommand.cs │ └── StaticRouted │ │ ├── AnalyzeCommands.cs │ │ ├── DebugCommands.cs │ │ ├── DialogCommands.cs │ │ ├── EditCommands.cs │ │ ├── ExtensionsCommands.cs │ │ ├── FileCommands.cs │ │ ├── HelpCommands.cs │ │ ├── ProjectCommands.cs │ │ ├── SettingCommands.cs │ │ ├── TestCommands.cs │ │ ├── ToolsCommands.cs │ │ ├── ViewCommands.cs │ │ └── WindowsCommands.cs │ ├── Converters │ ├── AccessibilityToIconConverter.cs │ ├── AnnotateDeclarationCommandCEVisibilityConverter.cs │ ├── AnnotateDeclarationCommandParameterToTupleConverter.cs │ ├── AnnotationToCodeStringConverter.cs │ ├── BoolToHiddenVisibilityConverter.cs │ ├── BoolToVisibleVisibilityConverter.cs │ ├── BooleanToClickActionConverter.cs │ ├── BooleanToDimmedTextConverter.cs │ ├── BooleanToNullableDoubleConverter.cs │ ├── CodeExplorerNodeToIconConverter.cs │ ├── ComponentTypeConverter.cs │ ├── DeclarationToDeclarationTypeStringConverter.cs │ ├── DeclarationToIconConverter.cs │ ├── DeclarationToMemberSignatureConverter.cs │ ├── DeclarationToQualifiedNameConverter.cs │ ├── DiagnosticSeverityToIconConverter.cs │ ├── EnumToLocalizedStringConverter.cs │ ├── GroupingGridLocationConverter.cs │ ├── GroupingToBooleanConverter.cs │ ├── HasItemsBoolConverter.cs │ ├── ImageSourceConverter.cs │ ├── InspectionToLocalizedNameConverter.cs │ ├── InvertBoolValueConverter.cs │ ├── LogLevelToIconConverter.cs │ ├── MemberTypeToIconConverter.cs │ ├── MillisecondToTimeMagnitudeConverter.cs │ ├── ModuleSyncStateToIconConverter.cs │ ├── ModuleTypeToIconConverter.cs │ ├── NonZeroToBooleanConverter.cs │ ├── NonZeroToVisibilityConverter.cs │ ├── SearchImageSourceConverter.cs │ ├── SearchResultToXamlConverter.cs │ ├── SelectedItemToBooleanConverter.cs │ ├── ServerConnectionStateToIconConverter.cs │ ├── SpecificValueToVisibilityConverter.cs │ ├── SpecificValuesToVisibilityConverter.cs │ ├── StringHasNoValueToVisibilityConverter.cs │ ├── StringHasValueToVisibilityConverter.cs │ ├── SubtractionConverter.cs │ ├── SupportedDocumentTypeToIconConverter.cs │ ├── TemplateCommandParameterToTupleConverter.cs │ ├── WindowStateToVisibilityConverter.cs │ ├── WindowToDuckyBackgroundTranslationConverter.cs │ └── WrapPanelItemWidthConverter.cs │ ├── Ducky.ico │ ├── EnvironmentProvider.cs │ ├── Extensions │ └── SelectionExtensions.cs │ ├── ICommandBindingProvider.cs │ ├── IPresenter.cs │ ├── ParameterInfo │ ├── ParameterInfoToolTip.xaml │ └── ParameterInfoToolTip.xaml.cs │ ├── Resources │ ├── Custom │ │ ├── Icons │ │ │ ├── AccessibilityFriend.png │ │ │ ├── AccessibilityGlobal.png │ │ │ ├── AccessibilityPrivate.png │ │ │ ├── AccessibilityStatic.png │ │ │ ├── AddClass.png │ │ │ ├── AddEvent.png │ │ │ ├── AddForm.png │ │ │ ├── AddMdiForm.png │ │ │ ├── AddMethod.png │ │ │ ├── AddModule.png │ │ │ ├── AddProperty.png │ │ │ ├── AddPropertyPage.png │ │ │ ├── AddResourceFile.png │ │ │ ├── AddUserControl.png │ │ │ ├── AddUserDocument.png │ │ │ ├── AddVariable.png │ │ │ ├── AllLoadedTests.png │ │ │ ├── ApplyCodeChanges.png │ │ │ ├── BrokenReference.png │ │ │ ├── CollapseDown.png │ │ │ ├── CollapseUp.png │ │ │ ├── DisplayFullSignature.png │ │ │ ├── DisplayName.png │ │ │ ├── Document.png │ │ │ ├── ExportTestRunResults.png │ │ │ ├── ExtractInterface.png │ │ │ ├── ExtractMethod.png │ │ │ ├── FindSymbol.png │ │ │ ├── FolderClosed.png │ │ │ ├── FolderClosedHidden.png │ │ │ ├── FolderClosedVirtual.png │ │ │ ├── FolderOpen.png │ │ │ ├── FolderOpenHidden.png │ │ │ ├── FolderOpenVirtual.png │ │ │ ├── GenerateMethod.png │ │ │ ├── GroupBy.png │ │ │ ├── ImplementInterface.png │ │ │ ├── ListOfTests.png │ │ │ ├── LockedReference.png │ │ │ ├── MdiForm.png │ │ │ ├── NewConstant.png │ │ │ ├── NewEvent.png │ │ │ ├── ObjectAssembly.png │ │ │ ├── ObjectClass.png │ │ │ ├── ObjectClassFriend.png │ │ │ ├── ObjectClassPredeclared.png │ │ │ ├── ObjectClassPrivate.png │ │ │ ├── ObjectClassProtected.png │ │ │ ├── ObjectClassSealed.png │ │ │ ├── ObjectClassShortcut.png │ │ │ ├── ObjectConstant.png │ │ │ ├── ObjectConstantFriend.png │ │ │ ├── ObjectConstantPrivate.png │ │ │ ├── ObjectConstantProtected.png │ │ │ ├── ObjectConstantSealed.png │ │ │ ├── ObjectConstantShortcut.png │ │ │ ├── ObjectEnum.png │ │ │ ├── ObjectEnumFriend.png │ │ │ ├── ObjectEnumItem.png │ │ │ ├── ObjectEnumItemFriend.png │ │ │ ├── ObjectEnumItemPrivate.png │ │ │ ├── ObjectEnumItemProtected.png │ │ │ ├── ObjectEnumItemSealed.png │ │ │ ├── ObjectEnumItemShortcut.png │ │ │ ├── ObjectEnumPrivate.png │ │ │ ├── ObjectEnumProtected.png │ │ │ ├── ObjectEnumSealed.png │ │ │ ├── ObjectEnumShortcut.png │ │ │ ├── ObjectEvent.png │ │ │ ├── ObjectEventFriend.png │ │ │ ├── ObjectEventPrivate.png │ │ │ ├── ObjectEventProtected.png │ │ │ ├── ObjectEventSealed.png │ │ │ ├── ObjectEventShortcut.png │ │ │ ├── ObjectField.png │ │ │ ├── ObjectFieldFriend.png │ │ │ ├── ObjectFieldPrivate.png │ │ │ ├── ObjectFieldProtected.png │ │ │ ├── ObjectFieldSealed.png │ │ │ ├── ObjectFieldShortcut.png │ │ │ ├── ObjectInterface.png │ │ │ ├── ObjectLibrary.png │ │ │ ├── ObjectLibraryFunction.png │ │ │ ├── ObjectMethod.png │ │ │ ├── ObjectMethodFriend.png │ │ │ ├── ObjectMethodPrivate.png │ │ │ ├── ObjectMethodProtected.png │ │ │ ├── ObjectMethodSealed.png │ │ │ ├── ObjectMethodShortcut.png │ │ │ ├── ObjectModule.png │ │ │ ├── ObjectModuleFriend.png │ │ │ ├── ObjectModulePrivate.png │ │ │ ├── ObjectModuleProtected.png │ │ │ ├── ObjectModuleSealed.png │ │ │ ├── ObjectModuleShortcut.png │ │ │ ├── ObjectProperties.png │ │ │ ├── ObjectPropertiesFriend.png │ │ │ ├── ObjectPropertiesPrivate.png │ │ │ ├── ObjectPropertiesProtected.png │ │ │ ├── ObjectPropertiesSealed.png │ │ │ ├── ObjectPropertiesShortcut.png │ │ │ ├── ObjectPropertyGet.png │ │ │ ├── ObjectPropertyLet.png │ │ │ ├── ObjectPropertySet.png │ │ │ ├── ObjectStructure.png │ │ │ ├── ObjectStructureFriend.png │ │ │ ├── ObjectStructurePrivate.png │ │ │ ├── ObjectStructureProtected.png │ │ │ ├── ObjectStructureSealed.png │ │ │ ├── ObjectStructureShortcut.png │ │ │ ├── ObjectType.png │ │ │ ├── ObjectTypeFriend.png │ │ │ ├── ObjectTypePrivate.png │ │ │ ├── ObjectTypeProtected.png │ │ │ ├── ObjectTypeSealed.png │ │ │ ├── ObjectTypeShortcut.png │ │ │ ├── ObjectValueType.png │ │ │ ├── ObjectValueTypeFriend.png │ │ │ ├── ObjectValueTypePrivate.png │ │ │ ├── ObjectValueTypeProtected.png │ │ │ ├── ObjectValueTypeSealed.png │ │ │ ├── ObjectValueTypeShortcut.png │ │ │ ├── Options.png │ │ │ ├── Play.png │ │ │ ├── ProjectForm.png │ │ │ ├── ProjectReference.png │ │ │ ├── PromoteLocal.png │ │ │ ├── Recursion.png │ │ │ ├── Refresh.png │ │ │ ├── RemoveParameters.png │ │ │ ├── ReorderParameters.png │ │ │ ├── Services.png │ │ │ ├── Severity.png │ │ │ ├── StepRunTest.png │ │ │ ├── SyncArrows.png │ │ │ ├── Task.png │ │ │ ├── TestManager.png │ │ │ └── TestMethod.png │ │ ├── background-ducky.png │ │ ├── ducky.ico │ │ ├── vector-ducky-blur-1480.png │ │ ├── vector-ducky-color.png │ │ └── vector-ducky-shadow-1480.png │ ├── FontAwesome │ │ ├── arrow-left-solid.png │ │ ├── arrow-right-solid.png │ │ ├── arrows-left-right-to-line-solid.png │ │ ├── arrows-spin-solid.png │ │ ├── ban-solid.png │ │ ├── binoculars-solid.png │ │ ├── bomb-solid.png │ │ ├── circle-arrow-right-solid.png │ │ ├── circle-check-solid.png │ │ ├── circle-exclamation-solid.png │ │ ├── circle-plus-solid.png │ │ ├── circle-question-regular.png │ │ ├── circle-question-solid.png │ │ ├── copy-solid.png │ │ ├── cubes-solid.png │ │ ├── down-left-and-up-right-to-center-solid.png │ │ ├── eraser-solid.png │ │ ├── eye-slash-solid.png │ │ ├── eye-solid.png │ │ ├── file-circle-check-solid.png │ │ ├── file-circle-exclamation-solid.png │ │ ├── file-circle-xmark-solid.png │ │ ├── file-code-regular.png │ │ ├── file-code-solid.png │ │ ├── file-excel-regular.png │ │ ├── file-excel-solid.png │ │ ├── file-lines-regular.png │ │ ├── file-lines-solid.png │ │ ├── file-pen-solid.png │ │ ├── file-regular.png │ │ ├── file-shield-solid.png │ │ ├── file-solid.png │ │ ├── file-waveform-solid.png │ │ ├── filter-circle-xmark-solid.png │ │ ├── filter-solid.png │ │ ├── folder-closed-regular.png │ │ ├── folder-minus-solid.png │ │ ├── folder-open-regular.png │ │ ├── folder-open-solid.png │ │ ├── folder-plus-solid.png │ │ ├── folder-solid.png │ │ ├── folder-tree-solid.png │ │ ├── gear-solid.png │ │ ├── gear-solid_circle-chevron-left.png │ │ ├── hourglass-half-solid.png │ │ ├── link-slash-solid.png │ │ ├── link-solid.png │ │ ├── lock-open-solid.png │ │ ├── lock-solid.png │ │ ├── pause-solid.png │ │ ├── power-off-solid.png │ │ ├── rectangle-xmark-solid.png │ │ ├── rotate-left-solid.png │ │ ├── square-minus-regular.png │ │ ├── square-minus-solid.png │ │ ├── square-plus-regular.png │ │ ├── square-plus-solid.png │ │ ├── square-xmark-solid-red.png │ │ ├── square-xmark-solid.png │ │ ├── stopwatch-solid.png │ │ ├── thumbtack-solid.png │ │ ├── toggle-off-solid.png │ │ ├── toggle-on-solid.png │ │ ├── up-right-and-down-left-from-center-solid.png │ │ ├── window-maximize-regular.png │ │ ├── window-minimize-regular.png │ │ ├── window-restore-regular.png │ │ ├── windows-16.png │ │ ├── windows-32.png │ │ ├── windows.png │ │ └── xmark-solid.png │ ├── FugueIcons │ │ ├── blue-folder-horizontal-open.png │ │ ├── blue-folder-horizontal.png │ │ ├── blue-folder-search-result.png │ │ ├── blue-folder-smiley-sad.png │ │ ├── blue-folder-smiley.png │ │ ├── blue-folder-tree.png │ │ ├── cross-circle.png │ │ ├── document--exclamation.png │ │ ├── document-access.png │ │ ├── document-block.png │ │ ├── document-code.png │ │ ├── document-excel.png │ │ ├── document-node.png │ │ ├── document-office.png │ │ ├── document-powerpoint.png │ │ ├── document-rename.png │ │ ├── document-search-result.png │ │ ├── document-word.png │ │ ├── document.png │ │ ├── drive--exclamation.png │ │ ├── drive-network.png │ │ ├── exclamation-diamond.png │ │ ├── folder-horizontal-open.png │ │ ├── folder-horizontal.png │ │ ├── folder-network-horizontal-open.png │ │ ├── folder-network-horizontal.png │ │ ├── folder-search-result.png │ │ ├── folder-smiley-sad.png │ │ ├── folder-smiley.png │ │ ├── information-white.png │ │ ├── information.png │ │ ├── light-bulb.png │ │ ├── magnifier-medium.png │ │ ├── selection-input.png │ │ └── tick-circle.png │ ├── splash.png │ ├── vector-ducky-blur-1480.png │ ├── vector-ducky-color.png │ └── vector-ducky-shadow-1480.png │ ├── Rubberduck.UI.csproj │ ├── RubberduckEditor │ └── Proto │ │ ├── BlockCompletion.cs │ │ ├── DataServer │ │ └── IDataServerMainWindowViewModel.cs │ │ ├── Editor │ │ ├── ICodePaneViewModel.cs │ │ ├── IEditorControlViewModel.cs │ │ ├── IEditorSettings.cs │ │ ├── IEditorShellContext.cs │ │ ├── ITextDocumentProvider.cs │ │ ├── ShellPanelLocation.cs │ │ └── Tools │ │ │ ├── IShellToolTab.cs │ │ │ ├── IShellToolTabSetting.cs │ │ │ ├── IToolTabViewModel.cs │ │ │ └── SyncPanel │ │ │ ├── IShellToolTabProvider.cs │ │ │ ├── ISyncPanelModuleViewModel.cs │ │ │ ├── ISyncPanelModuleViewModelProvider.cs │ │ │ ├── ISyncPanelToolTab.cs │ │ │ ├── ISyncPanelViewModel.cs │ │ │ └── ModuleSyncState.cs │ │ ├── EditorShellContext.cs │ │ ├── IBlockCompletionStrategy.cs │ │ └── SyncPanel │ │ ├── ILoadCommand.cs │ │ ├── IOpenCommand.cs │ │ └── ISyncCommand.cs │ ├── SaveAsTemplate │ └── SaveAsTemplateWindowViewModel.cs │ ├── Services │ ├── Abstract │ │ ├── ITemplatesService.cs │ │ ├── ITextMarker.cs │ │ ├── ITextMarkerService.cs │ │ ├── IWebNavigator.cs │ │ ├── TextMarker.cs │ │ ├── TextMarkerTypes.cs │ │ ├── ToolWindowViewModelBase.cs │ │ └── WindowService.cs │ ├── FoldingExtensions.cs │ ├── NewProject │ │ ├── INewProjectDialogService.cs │ │ ├── IVBProjectInfoProvider.cs │ │ ├── IWorkspaceSyncService.cs │ │ ├── NewProjectDialogService.cs │ │ ├── NewProjectWindowFactory.cs │ │ ├── NewProjectWindowViewModel.cs │ │ ├── ProjectFileBuilder.cs │ │ └── TemplatesService.cs │ ├── Settings │ │ ├── ISettingViewModelFactory.cs │ │ ├── SettingViewModelFactory.cs │ │ ├── SettingsDialogService.cs │ │ ├── SettingsWindowFactory.cs │ │ └── SettingsWindowViewModel.cs │ ├── TextMarkerExtensions.cs │ ├── TextMarkerService.cs │ ├── UIServiceHelper.cs │ └── WebNavigator.cs │ ├── Shared │ ├── About │ │ ├── AboutService.cs │ │ └── AboutWindowViewModel.cs │ ├── Message │ │ ├── IMessageService.cs │ │ ├── IMessageWindowFactory.cs │ │ ├── IMessageWindowViewModel.cs │ │ ├── MessageAction.cs │ │ ├── MessageActionResult.cs │ │ ├── MessageActionsProvider.cs │ │ ├── MessageModel.cs │ │ ├── MessageService.cs │ │ ├── MessageWindow.xaml │ │ ├── MessageWindow.xaml.cs │ │ ├── MessageWindowViewModel.cs │ │ └── OokiiMessageService.cs │ ├── NewProject │ │ ├── INewProjectWindowViewModel.cs │ │ ├── NewProjectWindow.xaml │ │ └── NewProjectWindow.xaml.cs │ └── Settings │ │ ├── Abstract │ │ ├── EnumValueSettingViewModel.cs │ │ ├── ISettingGroupViewModel.cs │ │ ├── ISettingViewModel.cs │ │ └── SettingViewModel.cs │ │ ├── BooleanSettingViewModel.cs │ │ ├── DefaultToolWindowLocationSettingViewModel.cs │ │ ├── DiagnosticSeveritySettingViewModel.cs │ │ ├── DockingLocationSettingViewModel.cs │ │ ├── ISettingsWindowViewModel.cs │ │ ├── ListSettingViewModel.cs │ │ ├── LogLevelSettingViewModel.cs │ │ ├── MessageTraceLevelSettingViewModel.cs │ │ ├── NumericSettingViewModel.cs │ │ ├── ServerMessageModeSettingViewModel.cs │ │ ├── ServerTransportTypeSettingViewModel.cs │ │ ├── SettingGroupViewModel.cs │ │ ├── SettingsWindow.xaml │ │ ├── SettingsWindow.xaml.cs │ │ ├── StringListSettingViewModel.cs │ │ ├── StringSettingViewModel.cs │ │ ├── Templates │ │ ├── BooleanSettingControl.xaml │ │ ├── BooleanSettingControl.xaml.cs │ │ ├── DiagnosticSettingsControl.xaml │ │ ├── DiagnosticSettingsControl.xaml.cs │ │ ├── EnumValueSettingControl.xaml │ │ ├── EnumValueSettingControl.xaml.cs │ │ ├── ListSettingControl.xaml │ │ ├── ListSettingControl.xaml.cs │ │ ├── NumericSettingControl.xaml │ │ ├── NumericSettingControl.xaml.cs │ │ ├── SettingGroupControl.xaml │ │ ├── SettingGroupControl.xaml.cs │ │ ├── SettingSubGroupControl.xaml │ │ ├── SettingSubGroupControl.xaml.cs │ │ ├── SettingTemplateSelector.cs │ │ ├── StringSettingControl.xaml │ │ ├── StringSettingControl.xaml.cs │ │ ├── TimeSpanSettingControl.xaml │ │ ├── TimeSpanSettingControl.xaml.cs │ │ ├── UriSettingControl.xaml │ │ └── UriSettingControl.xaml.cs │ │ ├── TimeSpanSettingViewModel.cs │ │ └── UriSettingViewModel.cs │ ├── Shell │ ├── About │ │ ├── AboutWindow.xaml │ │ ├── AboutWindow.xaml.cs │ │ └── IAboutWindowViewModel.cs │ ├── BindableTextEditor.cs │ ├── BusyIndicator.xaml │ ├── BusyIndicator.xaml.cs │ ├── Document │ │ ├── DependencyObjectExtensions.cs │ │ ├── DocumentTabTemplateSelector.cs │ │ ├── IDocumentTabViewModel.cs │ │ ├── ITextMarkerToolTip.cs │ │ ├── MarkdownEditorControl.xaml │ │ ├── MarkdownEditorControl.xaml.cs │ │ ├── SourceCodeEditorControl.xaml │ │ ├── SourceCodeEditorControl.xaml.cs │ │ ├── TextEditorControl.xaml │ │ ├── TextEditorControl.xaml.cs │ │ ├── TextMarkerToolTip.xaml │ │ ├── TextMarkerToolTip.xaml.cs │ │ └── TextMarkersMargin.cs │ ├── DuckyBackgroundControl.xaml │ ├── DuckyBackgroundControl.xaml.cs │ ├── FieldInfoLabel.xaml │ ├── FieldInfoLabel.xaml.cs │ ├── FlatButton.xaml │ ├── FlatButton.xaml.cs │ ├── FlatToggleButton.xaml │ ├── FlatToggleButton.xaml.cs │ ├── IShellChildWindow.cs │ ├── IShellWindowViewModel.cs │ ├── IToolPanelViewModel.cs │ ├── MenuBarControl.xaml │ ├── MenuBarControl.xaml.cs │ ├── SearchBox.xaml │ ├── SearchBox.xaml.cs │ ├── ShellChildToolWindow.xaml │ ├── ShellChildToolWindow.xaml.cs │ ├── ShellChildWindow.xaml │ ├── ShellChildWindow.xaml.cs │ ├── ShellResources.xaml │ ├── ShellWindow.xaml │ ├── ShellWindow.xaml.cs │ ├── Splash │ │ ├── ISplashViewModel.cs │ │ ├── SplashWindow.xaml │ │ └── SplashWindow.xaml.cs │ ├── StatusBar │ │ ├── DocumentStatusTemplateSelector.cs │ │ ├── IDiagnosticViewModel.cs │ │ ├── IDocumentStatusViewModel.cs │ │ ├── ILanguageServerStatusViewModel.cs │ │ ├── INotificationStatusViewModel.cs │ │ ├── INotificationViewModel.cs │ │ ├── IProgressStatusViewModel.cs │ │ ├── IShellStatusBarViewModel.cs │ │ ├── ISourceFileStatusViewModel.cs │ │ ├── IStatusBarViewModel.cs │ │ ├── ServerConnectionState.cs │ │ ├── StatusBarControl.xaml │ │ └── StatusBarControl.xaml.cs │ ├── ThunderFrame.xaml │ ├── ThunderFrame.xaml.cs │ └── Tools │ │ ├── ServerTrace │ │ ├── ILanguageServerTraceViewModel.cs │ │ ├── IServerTraceViewModel.cs │ │ ├── LogLevelFilterConverter.cs │ │ ├── ServerTraceCommands.cs │ │ ├── ServerTraceControl.xaml │ │ └── ServerTraceControl.xaml.cs │ │ └── WorkspaceExplorer │ │ ├── IWorkspaceExplorerViewModel.cs │ │ ├── IWorkspaceFileViewModel.cs │ │ ├── IWorkspaceSourceFileViewModel.cs │ │ ├── IWorkspaceTreeNode.cs │ │ ├── IWorkspaceViewModel.cs │ │ ├── WorkspaceExplorerCommands.cs │ │ ├── WorkspaceExplorerControl.xaml │ │ ├── WorkspaceExplorerControl.xaml.cs │ │ └── WorkspaceNodeTemplateSelector.cs │ ├── Styles │ ├── CheckBoxTemplate.xaml │ ├── ComboBoxTemplate.xaml │ ├── DefaultStyle.xaml │ ├── Icons.xaml │ ├── ScrollBarTemplate.xaml │ ├── SectionExpander.xaml │ └── Templates.xaml │ ├── Themes │ ├── AbyssTheme.xaml │ ├── BlueTheme.xaml │ ├── DarkTheme.xaml │ └── LightTheme.xaml │ ├── ViewModelBase.cs │ └── Windows │ ├── DialogService.cs │ ├── DialogWindowViewModel.cs │ ├── IDialogService.cs │ ├── IDialogWindowViewModel.cs │ ├── IDragablzWindowViewModel.cs │ ├── IToolWindowViewModel.cs │ ├── IWindowFactory.cs │ └── WindowViewModel.cs ├── LICENSE.txt ├── README.md ├── Register.bat ├── RegisterAddIn.reg ├── Rubberduck3.sln ├── Server ├── Rubberduck.CodeAnalysis.Legacy │ ├── Abstract │ │ └── IInspection.cs │ ├── CodeInspectionSeverity.cs │ ├── CodeInspectionType.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Results │ │ ├── InspectionResult.cs │ │ └── QualifiedContextInspectionResult.cs │ ├── Rubberduck.CodeAnalysis.csproj │ ├── app.config │ └── packages.config ├── Rubberduck.LanguageServer │ ├── Ducky.ico │ ├── Handlers │ │ ├── Document │ │ │ ├── DidChangeTextDocumentHandler.cs │ │ │ ├── DidCloseTextDocumentHandler.cs │ │ │ └── DidOpenTextDocumentHandler.cs │ │ ├── Language │ │ │ ├── CallHierarchyHandler.cs │ │ │ ├── CodeActionHandler.cs │ │ │ ├── CodeActionResolveHandler.cs │ │ │ ├── CodeLensHandler.cs │ │ │ ├── ColorPresentationHandler.cs │ │ │ ├── CompletionHandler.cs │ │ │ ├── DeclarationHandler.cs │ │ │ ├── DefinitionHandler.cs │ │ │ ├── DocumentColorHandler.cs │ │ │ ├── DocumentDiagnosticHandler.cs │ │ │ ├── DocumentFormattingHandler.cs │ │ │ ├── DocumentHighlightHandler.cs │ │ │ ├── DocumentOnTypeFormattingHandler.cs │ │ │ ├── DocumentRangeFormattingHandler.cs │ │ │ ├── DocumentSymbolHandler.cs │ │ │ ├── FoldingRangeHandler.cs │ │ │ ├── HoverHandler.cs │ │ │ ├── ImplementationHandler.cs │ │ │ ├── PrepareRenameHandler.cs │ │ │ ├── ReferencesHandler.cs │ │ │ ├── RenameHandler.cs │ │ │ ├── SelectionRangeHandler.cs │ │ │ ├── SemanticTokensFullHandler.cs │ │ │ ├── SemanticTokensHandler.cs │ │ │ ├── SignatureHelpHandler.cs │ │ │ ├── SymbolInformationHandler.cs │ │ │ ├── TypeDefinitionHandler.cs │ │ │ └── TypeHierarchyHandler.cs │ │ ├── Lifecycle │ │ │ ├── ExitHandler.cs │ │ │ ├── InitializedHandler.cs │ │ │ ├── SetTraceHandler.cs │ │ │ └── ShutdownHandler.cs │ │ └── Workspace │ │ │ ├── DidChangeConfigurationHandler.cs │ │ │ ├── DidChangeWatchedFileHandler.cs │ │ │ ├── DidChangeWorkspaceFoldersHandler.cs │ │ │ ├── DidCreateFileHandler.cs │ │ │ ├── DidDeleteFileHandler.cs │ │ │ ├── DidRenameFileHandler.cs │ │ │ ├── ExecuteCommandHandler.cs │ │ │ ├── WorkspaceDiagnosticHandler.cs │ │ │ ├── WorkspaceSymbolResolveHandler.cs │ │ │ └── WorkspaceSymbolsHandler.cs │ ├── LanguageServerState.cs │ ├── NLog-server.config │ ├── NLog.xsd │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Rubberduck.LanguageServer.csproj │ ├── ServerApp.cs │ └── SyntaxErrorMessageService.cs ├── Rubberduck.Parsing.Legacy │ ├── Abstract │ │ ├── Expression.cs │ │ ├── ICommonTokenStreamProvider.cs │ │ ├── ICompilationArgumentsCache.cs │ │ ├── ICompilationArgumentsProvider.cs │ │ ├── IExpression.cs │ │ ├── IModuleParser.cs │ │ ├── IParseCoordinator.cs │ │ ├── IParsePassErrorListenerFactory.cs │ │ ├── IParseRunner.cs │ │ ├── IParser.cs │ │ ├── IParsingStageService.cs │ │ ├── IRubberduckParseErrorListener.cs │ │ ├── IRubberduckParserErrorListenerFactory.cs │ │ ├── ITokenStreamParser.cs │ │ ├── ITokenStreamPreprocessor.cs │ │ ├── IValue.cs │ │ ├── ModuleState.cs │ │ ├── ParserState.cs │ │ ├── ParserStateManager.cs │ │ └── TokenStreamParserBase.cs │ ├── Annotations │ │ ├── AnnotationBase.cs │ │ ├── AttributeAnnotationExtensions.cs │ │ ├── AttributeAnnotationProvider.cs │ │ ├── Concrete │ │ │ ├── DefaultMemberAnnotation.cs │ │ │ ├── DescriptionAnnotation.cs │ │ │ ├── DescriptionAttributeAnnotationBase.cs │ │ │ ├── EntryPointAnnotation.cs │ │ │ ├── EnumeratorMemberAnnotation.cs │ │ │ ├── ExcelHotKeyAnnotation.cs │ │ │ ├── ExposedModuleAnnotation.cs │ │ │ ├── FolderAnnotation.cs │ │ │ ├── IgnoreAnnotation.cs │ │ │ ├── IgnoreModuleAnnotation.cs │ │ │ ├── IgnoreTestAnnotation.cs │ │ │ ├── InterfaceAnnotation.cs │ │ │ ├── MemberAttributeAnnotation.cs │ │ │ ├── ModuleAttributeAnnotation.cs │ │ │ ├── ModuleCleanupAnnotation.cs │ │ │ ├── ModuleDescriptionAnnotation.cs │ │ │ ├── ModuleInitializeAnnotation.cs │ │ │ ├── NoIndentAnnotation.cs │ │ │ ├── ObsoleteAnnotation.cs │ │ │ ├── PredeclaredIdAnnotation.cs │ │ │ ├── README.md │ │ │ ├── TestCleanupAnnotation.cs │ │ │ ├── TestInitializeAnnotation.cs │ │ │ ├── TestMethodAnnotation.cs │ │ │ ├── TestModuleAnnotation.cs │ │ │ └── VariableDescriptionAnnotation.cs │ │ ├── FixedAttributeValueAnnotationBase.cs │ │ ├── FlexibleAttributeAnnotationBase.cs │ │ ├── FlexibleAttributeValueAnnotationBase.cs │ │ ├── IAnnotation.cs │ │ ├── IAnnotationFactory.cs │ │ ├── IAttributeAnnotation.cs │ │ ├── IAttributeAnnotationProvider.cs │ │ ├── IParseTreeAnnotation.cs │ │ ├── ITestAnnotation.cs │ │ ├── InvalidAnnotationArgumentException.cs │ │ ├── NotRecognizedAnnotation.cs │ │ ├── ParseTreeAnnotation.cs │ │ └── VBAParserAnnotationFactory.cs │ ├── COM │ │ ├── Abstract │ │ │ ├── IComLibraryProvider.cs │ │ │ ├── IComProjectDeserializer.cs │ │ │ ├── IComProjectSerializationProvider.cs │ │ │ ├── IDeclarationsFromComProjectLoader.cs │ │ │ ├── IReferencedDeclarationsCollector.cs │ │ │ ├── IUserComProjectProvider.cs │ │ │ └── IUserComProjectRepository.cs │ │ ├── ReferenceLoading │ │ │ ├── COMReferenceSynchronizerBase.cs │ │ │ ├── ICOMReferenceSynchronizer.cs │ │ │ ├── IProjectReferencesProvider.cs │ │ │ └── ReferencePriorityMap.cs │ │ └── Reflection │ │ │ ├── DeclarationsFromComProjectLoader.cs │ │ │ ├── LibraryReferencedDeclarationsCollector.cs │ │ │ ├── ReferencedDeclarationsCollector.cs │ │ │ ├── SerializedReferencedDeclarationsCollector.cs │ │ │ ├── UserProjectRepository.cs │ │ │ └── XmlComProjectSerializer.cs │ ├── DeclarationCaching │ │ └── IDeclarationFinder.cs │ ├── Exceptions │ │ ├── ExceptionErrorListener.cs │ │ ├── ExceptionErrorListenerFactory.cs │ │ ├── MainParseErrorListenerFactory.cs │ │ ├── MainParseExceptionErrorListener.cs │ │ ├── MainParseSyntaxErrorException.cs │ │ ├── ParsePassErrorListenerBase.cs │ │ ├── ParsePassExceptionErrorListener.cs │ │ ├── ParsePassSyntaxErrorException.cs │ │ ├── ParsePassSyntaxErrorInfo.cs │ │ ├── PreprocessingParseErrorListenerFactory.cs │ │ ├── PreprocessorExceptionErrorListener.cs │ │ ├── PreprosessorSyntaxErrorException.cs │ │ ├── RubberduckParseErrorListenerBase.cs │ │ ├── SyntaxErrorException.cs │ │ ├── SyntaxErrorInfo.cs │ │ └── SyntaxErrorNotificationListener.cs │ ├── Expressions │ │ ├── AbsLibraryFunctionExpression.cs │ │ ├── BinaryDivisionExpression.cs │ │ ├── BinaryIntDivExpression.cs │ │ ├── BinaryMinusExpression.cs │ │ ├── BinaryMultiplicationExpression.cs │ │ ├── BinaryPlusExpression.cs │ │ ├── BoolValue.cs │ │ ├── ByteValue.cs │ │ ├── CBoolLibraryFunctionExpression.cs │ │ ├── CByteLibraryFunctionExpression.cs │ │ ├── CCurLibraryFunctionExpression.cs │ │ ├── CDateLibraryFunctionExpression.cs │ │ ├── CDblLibraryFunctionExpression.cs │ │ ├── CIntLibraryFunctionExpression.cs │ │ ├── CLngLibraryFunctionExpression.cs │ │ ├── CLngLngLibraryFunctionExpression.cs │ │ ├── CLngPtrLibraryFunctionExpression.cs │ │ ├── CSngLibraryFunctionExpression.cs │ │ ├── CStrLibraryFunctionExpression.cs │ │ ├── CVarLibraryFunctionExpression.cs │ │ ├── ConcatExpression.cs │ │ ├── ConditionalCompilationBlockExpression.cs │ │ ├── ConditionalCompilationConstantExpression.cs │ │ ├── ConditionalCompilationIfExpression.cs │ │ ├── ConstantExpression.cs │ │ ├── DateLiteralExpression.cs │ │ ├── DateValue.cs │ │ ├── DecimalValue.cs │ │ ├── EmptyValue.cs │ │ ├── FixLibraryFunctionExpression.cs │ │ ├── HexNumberLiteralExpression.cs │ │ ├── IntLibraryFunctionExpression.cs │ │ ├── IsExpression.cs │ │ ├── LenBLibraryFunctionExpression.cs │ │ ├── LenLibraryFunctionExpression.cs │ │ ├── LikeExpression.cs │ │ ├── LivelinessExpression.cs │ │ ├── LogicalAndExpression.cs │ │ ├── LogicalEqualsExpression.cs │ │ ├── LogicalEqvExpression.cs │ │ ├── LogicalGreaterOrEqualsExpression.cs │ │ ├── LogicalGreaterThanExpression.cs │ │ ├── LogicalImpExpression.cs │ │ ├── LogicalLessOrEqualsExpression.cs │ │ ├── LogicalLessThanExpression.cs │ │ ├── LogicalNotEqualsExpression.cs │ │ ├── LogicalOrExpression.cs │ │ ├── LogicalXorExpression.cs │ │ ├── ModExpression.cs │ │ ├── NameExpression.cs │ │ ├── NumberLiteralExpression.cs │ │ ├── OctNumberLiteralExpression.cs │ │ ├── PowExpression.cs │ │ ├── SgnLibraryFunctionExpression.cs │ │ ├── StringLiteralExpression.cs │ │ ├── StringValue.cs │ │ ├── SymbolTable.cs │ │ ├── TokensValue.cs │ │ ├── UnaryMinusExpression.cs │ │ ├── UnaryNotExpression.cs │ │ ├── VBADateConstants.cs │ │ ├── VBALibrary.cs │ │ └── ValueType.cs │ ├── Extensions │ │ ├── StringExtensions.cs │ │ ├── TokenExtensions.cs │ │ └── VBABaseParserRuleContextExtensions.cs │ ├── ITextDocumentProvider.cs │ ├── Listeners │ │ ├── AnnotationListener.cs │ │ ├── AttributeListener.cs │ │ ├── BlockCompletionListener.cs │ │ ├── CombinedParseTreeListener.cs │ │ ├── CommentListener.cs │ │ ├── IBlockFoldingSettings.cs │ │ └── VBFoldingListener.cs │ ├── LogicalLineStore.cs │ ├── Model │ │ ├── BlockFoldingInfo.cs │ │ ├── CodeKind.cs │ │ ├── ComReflection │ │ │ ├── ComAlias.cs │ │ │ ├── ComBase.cs │ │ │ ├── ComCoClass.cs │ │ │ ├── ComDocumentation.cs │ │ │ ├── ComEnumeration.cs │ │ │ ├── ComEnumerationMember.cs │ │ │ ├── ComField.cs │ │ │ ├── ComInterface.cs │ │ │ ├── ComLibraryProvider.cs │ │ │ ├── ComMember.cs │ │ │ ├── ComModule.cs │ │ │ ├── ComParameter.cs │ │ │ ├── ComProject.cs │ │ │ ├── ComStruct.cs │ │ │ ├── ComType.cs │ │ │ ├── ComTypeName.cs │ │ │ └── ComVariant.cs │ │ ├── MemberInfo.cs │ │ ├── ModuleParseResults.cs │ │ ├── NamedOffsetInfo.cs │ │ ├── ParameterInfo.cs │ │ ├── QualifiedDocumentOffset.cs │ │ ├── Symbols │ │ │ ├── AliasDeclaration.cs │ │ │ ├── ArgumentListArgumentType.cs │ │ │ ├── ArgumentReference.cs │ │ │ ├── Attributes.cs │ │ │ ├── CallStatement.cs │ │ │ ├── ClassModuleDeclaration.cs │ │ │ ├── CommentExtensions.cs │ │ │ ├── CommentNode.cs │ │ │ ├── Declaration.cs │ │ │ ├── DeclarationEnumerableExtensions.cs │ │ │ ├── DeclarationEventArgs.cs │ │ │ ├── DocumentModuleDeclaration.cs │ │ │ ├── EventDeclaration.cs │ │ │ ├── ExternalProcedureDeclaration.cs │ │ │ ├── FunctionDeclaration.cs │ │ │ ├── ICanBeDefaultMember.cs │ │ │ ├── IDeclarationFinderFactory.cs │ │ │ ├── IInterfaceExposable.cs │ │ │ ├── IParameterizedDeclaration.cs │ │ │ ├── Identifier.cs │ │ │ ├── IdentifierReference.cs │ │ │ ├── MemberProcessedEventArgs.cs │ │ │ ├── ModuleBodyElementDeclaration.cs │ │ │ ├── ModuleDeclaration.cs │ │ │ ├── ParameterDeclaration.cs │ │ │ ├── ProceduralModuleDeclaration.cs │ │ │ ├── ProjectDeclaration.cs │ │ │ ├── ProjectReference.cs │ │ │ ├── PropertyDeclaration.cs │ │ │ ├── PropertyGetDeclaration.cs │ │ │ ├── PropertyLetDeclaration.cs │ │ │ ├── PropertySetDeclaration.cs │ │ │ ├── SquareBracketedNameComparer.cs │ │ │ ├── SubroutineDeclaration.cs │ │ │ ├── SymbolList.cs │ │ │ ├── UnboundMemberDeclaration.cs │ │ │ ├── ValuedDeclaration.cs │ │ │ └── VariableDeclaration.cs │ │ ├── Tokens.cs │ │ ├── TypedMemberInfo.cs │ │ ├── TypedNamedOffsetInfo.cs │ │ └── ValuedMemberInfo.cs │ ├── ParserMode.cs │ ├── Parsers │ │ ├── Grammar │ │ │ ├── PartialExtensions │ │ │ │ ├── IAnnotatedContext.cs │ │ │ │ ├── IAnnotatingContext.cs │ │ │ │ ├── IIdentifierContext.cs │ │ │ │ └── VBAParserPartialExtensions.cs │ │ │ ├── VBABaseLexer.cs │ │ │ ├── VBABaseParser.cs │ │ │ ├── VBABaseParserRuleContext.cs │ │ │ ├── VBAConditionalCompilationParser.g4 │ │ │ ├── VBADate.g4 │ │ │ ├── VBALexer.g4 │ │ │ ├── VBALike.g4 │ │ │ ├── VBAMemberParser.g4 │ │ │ └── VBAParser.g4 │ │ ├── TokenStreamParserAdapterWithPreprocessing.cs │ │ ├── TokenStreamParserStringParserAdapter.cs │ │ ├── TokenStreamProviders │ │ │ ├── CommonTokenStreamProvider.cs │ │ │ ├── StringTokenStreamProvider.cs │ │ │ └── TextReaderTokenStreamProvider.cs │ │ ├── VBACodeStringParser.cs │ │ ├── VBADateLiteralParser.cs │ │ ├── VBAExpressionParser.cs │ │ ├── VBALikePatternParser.cs │ │ ├── VBAPreprocessorParser.cs │ │ ├── VBATokenStreamParser.cs │ │ └── VbeModuleParser.cs │ ├── PreProcessing │ │ ├── CompilationArgumentsCache.cs │ │ ├── CompilationArgumentsProvider.cs │ │ ├── VBAPredefinedCompilationConstants.cs │ │ ├── VBAPreprocessor.cs │ │ └── VBAPreprocessorVisitor.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QualifiedContext.cs │ ├── ReferenceManagement │ │ ├── ConcurrentFailedResolutionStore.cs │ │ ├── FailedResolutionStore.cs │ │ ├── IFailedResolutionStore.cs │ │ └── IMutableFailedResolutionStore.cs │ ├── Rewriter │ │ ├── IExecutableModuleRewriter.cs │ │ ├── IModuleRewriter.cs │ │ ├── IModuleRewriterFactory.cs │ │ ├── ModuleRewriter.cs │ │ ├── ModuleRewriterFactory.cs │ │ └── RewriterInfo │ │ │ ├── ArgumentRewriterInfoFinder.cs │ │ │ ├── ConstantRewriterInfoFinder.cs │ │ │ ├── DefaultRewriterInfoFinder.cs │ │ │ ├── IRewriterInfoFinder.cs │ │ │ ├── ParameterRewriterInfoFinder.cs │ │ │ ├── RewriterInfo.cs │ │ │ ├── RewriterInfoFinderBase.cs │ │ │ └── VariableRewriterInfoFinder.cs │ ├── Rubberduck.Parsing.Legacy.csproj │ ├── app.config │ └── packages.config ├── Rubberduck.Parsing │ ├── Abstract │ │ ├── Expression.cs │ │ ├── ICommonTokenStreamProvider.cs │ │ ├── ICompilationArgumentsCache.cs │ │ ├── ICompilationArgumentsProvider.cs │ │ ├── IExpression.cs │ │ ├── IModuleParser.cs │ │ ├── IParseCoordinator.cs │ │ ├── IParsePassErrorListenerFactory.cs │ │ ├── IParseRunner.cs │ │ ├── IParser.cs │ │ ├── IParsingStageService.cs │ │ ├── IRubberduckParseErrorListener.cs │ │ ├── IRubberduckParserErrorListenerFactory.cs │ │ ├── ITokenStreamParser.cs │ │ ├── ITokenStreamPreprocessor.cs │ │ ├── IValue.cs │ │ ├── ModuleState.cs │ │ ├── ParserState.cs │ │ ├── ParserStateManager.cs │ │ └── TokenStreamParserBase.cs │ ├── Annotations │ │ ├── AnnotationBase.cs │ │ ├── AttributeAnnotationExtensions.cs │ │ ├── AttributeAnnotationProvider.cs │ │ ├── Concrete │ │ │ ├── DefaultMemberAnnotation.cs │ │ │ ├── DescriptionAnnotation.cs │ │ │ ├── DescriptionAttributeAnnotationBase.cs │ │ │ ├── EntryPointAnnotation.cs │ │ │ ├── EnumeratorMemberAnnotation.cs │ │ │ ├── ExcelHotKeyAnnotation.cs │ │ │ ├── ExposedModuleAnnotation.cs │ │ │ ├── FolderAnnotation.cs │ │ │ ├── IgnoreAnnotation.cs │ │ │ ├── IgnoreModuleAnnotation.cs │ │ │ ├── IgnoreTestAnnotation.cs │ │ │ ├── InterfaceAnnotation.cs │ │ │ ├── MemberAttributeAnnotation.cs │ │ │ ├── ModuleAttributeAnnotation.cs │ │ │ ├── ModuleCleanupAnnotation.cs │ │ │ ├── ModuleDescriptionAnnotation.cs │ │ │ ├── ModuleInitializeAnnotation.cs │ │ │ ├── NoIndentAnnotation.cs │ │ │ ├── ObsoleteAnnotation.cs │ │ │ ├── PredeclaredIdAnnotation.cs │ │ │ ├── README.md │ │ │ ├── TestCleanupAnnotation.cs │ │ │ ├── TestInitializeAnnotation.cs │ │ │ ├── TestMethodAnnotation.cs │ │ │ ├── TestModuleAnnotation.cs │ │ │ └── VariableDescriptionAnnotation.cs │ │ ├── FixedAttributeValueAnnotationBase.cs │ │ ├── FlexibleAttributeAnnotationBase.cs │ │ ├── FlexibleAttributeValueAnnotationBase.cs │ │ ├── IAnnotationFactory.cs │ │ ├── IAttributeAnnotationProvider.cs │ │ ├── InvalidAnnotationArgumentException.cs │ │ ├── NotRecognizedAnnotation.cs │ │ └── VBAParserAnnotationFactory.cs │ ├── COM │ │ └── Abstract │ │ │ ├── IComLibraryProvider.cs │ │ │ ├── IComProjectDeserializer.cs │ │ │ ├── IComProjectSerializationProvider.cs │ │ │ ├── IUserComProjectProvider.cs │ │ │ └── IUserComProjectRepository.cs │ ├── DeclarationCaching │ │ └── IDeclarationFinder.cs │ ├── Exceptions │ │ ├── AntlrSyntaxErrorInfo.cs │ │ ├── RubberduckParseErrorListener.cs │ │ └── SllPredictionFailException.cs │ ├── Expressions │ │ ├── AbsLibraryFunctionExpression.cs │ │ ├── BinaryDivisionExpression.cs │ │ ├── BinaryIntDivExpression.cs │ │ ├── BinaryMinusExpression.cs │ │ ├── BinaryMultiplicationExpression.cs │ │ ├── BinaryPlusExpression.cs │ │ ├── BoolValue.cs │ │ ├── ByteValue.cs │ │ ├── CBoolLibraryFunctionExpression.cs │ │ ├── CByteLibraryFunctionExpression.cs │ │ ├── CCurLibraryFunctionExpression.cs │ │ ├── CDateLibraryFunctionExpression.cs │ │ ├── CDblLibraryFunctionExpression.cs │ │ ├── CIntLibraryFunctionExpression.cs │ │ ├── CLngLibraryFunctionExpression.cs │ │ ├── CLngLngLibraryFunctionExpression.cs │ │ ├── CLngPtrLibraryFunctionExpression.cs │ │ ├── CSngLibraryFunctionExpression.cs │ │ ├── CStrLibraryFunctionExpression.cs │ │ ├── CVarLibraryFunctionExpression.cs │ │ ├── ConcatExpression.cs │ │ ├── ConditionalCompilationBlockExpression.cs │ │ ├── ConditionalCompilationConstantExpression.cs │ │ ├── ConditionalCompilationIfExpression.cs │ │ ├── ConstantExpression.cs │ │ ├── DateLiteralExpression.cs │ │ ├── DateValue.cs │ │ ├── DecimalValue.cs │ │ ├── EmptyValue.cs │ │ ├── FixLibraryFunctionExpression.cs │ │ ├── HexNumberLiteralExpression.cs │ │ ├── IntLibraryFunctionExpression.cs │ │ ├── IsExpression.cs │ │ ├── LenBLibraryFunctionExpression.cs │ │ ├── LenLibraryFunctionExpression.cs │ │ ├── LikeExpression.cs │ │ ├── LivelinessExpression.cs │ │ ├── LogicalAndExpression.cs │ │ ├── LogicalEqualsExpression.cs │ │ ├── LogicalEqvExpression.cs │ │ ├── LogicalGreaterOrEqualsExpression.cs │ │ ├── LogicalGreaterThanExpression.cs │ │ ├── LogicalImpExpression.cs │ │ ├── LogicalLessOrEqualsExpression.cs │ │ ├── LogicalLessThanExpression.cs │ │ ├── LogicalNotEqualsExpression.cs │ │ ├── LogicalOrExpression.cs │ │ ├── LogicalXorExpression.cs │ │ ├── ModExpression.cs │ │ ├── NameExpression.cs │ │ ├── NumberLiteralExpression.cs │ │ ├── OctNumberLiteralExpression.cs │ │ ├── PowExpression.cs │ │ ├── SgnLibraryFunctionExpression.cs │ │ ├── StringLiteralExpression.cs │ │ ├── StringValue.cs │ │ ├── SymbolTable.cs │ │ ├── TokensValue.cs │ │ ├── UnaryMinusExpression.cs │ │ ├── UnaryNotExpression.cs │ │ ├── VBADateConstants.cs │ │ ├── VBALibrary.cs │ │ └── ValueType.cs │ ├── Extensions │ │ ├── DictionaryExtensions.cs │ │ ├── StringExtensions.cs │ │ ├── TokenExtensions.cs │ │ └── VBABaseParserRuleContextExtensions.cs │ ├── ITextDocumentProvider.cs │ ├── Listeners │ │ ├── CombinedParseTreeListener.cs │ │ └── CommentListener.cs │ ├── LogicalLineStore.cs │ ├── Model │ │ ├── CodeKind.cs │ │ ├── ComReflection │ │ │ ├── ComAlias.cs │ │ │ ├── ComBase.cs │ │ │ ├── ComCoClass.cs │ │ │ ├── ComDocumentation.cs │ │ │ ├── ComEnumeration.cs │ │ │ ├── ComEnumerationMember.cs │ │ │ ├── ComField.cs │ │ │ ├── ComInterface.cs │ │ │ ├── ComLibraryProvider.cs │ │ │ ├── ComMember.cs │ │ │ ├── ComModule.cs │ │ │ ├── ComParameter.cs │ │ │ ├── ComProject.cs │ │ │ ├── ComStruct.cs │ │ │ ├── ComType.cs │ │ │ ├── ComTypeName.cs │ │ │ └── ComVariant.cs │ │ ├── ModuleParseResults.cs │ │ └── Symbols │ │ │ └── CommentNode.cs │ ├── ParserMode.cs │ ├── Parsers │ │ ├── Grammar │ │ │ ├── PartialExtensions │ │ │ │ ├── IAnnotatedContext.cs │ │ │ │ ├── IAnnotatingContext.cs │ │ │ │ ├── IIdentifierContext.cs │ │ │ │ └── VBAParserPartialExtensions.cs │ │ │ ├── VBABaseLexer.cs │ │ │ ├── VBABaseParser.cs │ │ │ ├── VBABaseParserRuleContext.cs │ │ │ ├── VBAConditionalCompilationParser.g4 │ │ │ ├── VBADate.g4 │ │ │ ├── VBALexer.g4 │ │ │ ├── VBALike.g4 │ │ │ ├── VBAMemberParser.g4 │ │ │ └── VBAParser.g4 │ │ ├── ModuleParser.cs │ │ ├── TokenStreamParserAdapterWithPreprocessing.cs │ │ ├── TokenStreamParserStringParserAdapter.cs │ │ ├── TokenStreamProviders │ │ │ ├── CommonTokenStreamProvider.cs │ │ │ ├── StringTokenStreamProvider.cs │ │ │ └── TextReaderTokenStreamProvider.cs │ │ ├── VBACodeStringParser.cs │ │ ├── VBADateLiteralParser.cs │ │ ├── VBAExpressionParser.cs │ │ ├── VBALikePatternParser.cs │ │ ├── VBAPreprocessorParser.cs │ │ ├── VBATokenStreamParser.cs │ │ └── VbeModuleParser.cs │ ├── PreProcessing │ │ ├── CompilationArgumentsCache.cs │ │ ├── CompilationArgumentsProvider.cs │ │ ├── VBAPredefinedCompilationConstants.cs │ │ ├── VBAPreprocessor.cs │ │ └── VBAPreprocessorVisitor.cs │ ├── Rubberduck.Parsing.csproj │ └── _v3 │ │ ├── Pipeline │ │ ├── Abstract │ │ │ ├── DataflowPipeline.cs │ │ │ ├── DataflowPipelineSection.cs │ │ │ ├── IResolverService.cs │ │ │ ├── ParserPipelineState.cs │ │ │ ├── WorkspaceDocumentSection.cs │ │ │ └── WorkspaceOrchestratorSection.cs │ │ ├── DocumentHierarchicalSymbolsSection.cs │ │ ├── DocumentMemberSymbolsSection.cs │ │ ├── DocumentParserSection.cs │ │ ├── DocumentPipeline.cs │ │ ├── PipelineParseResult.cs │ │ ├── Services │ │ │ ├── DocumentParserState.cs │ │ │ ├── LibrarySymbolsService.cs │ │ │ ├── MemberSymbolsListener.cs │ │ │ ├── ParserPipelineSectionProvider.cs │ │ │ ├── PipelineParseTreeSymbolsService.cs │ │ │ ├── PipelineParserService.cs │ │ │ ├── ResolverService.cs │ │ │ ├── SemanticTokensListener.cs │ │ │ └── VBFoldingListener.cs │ │ ├── WorkspaceDocumentParserOrchestrator.cs │ │ ├── WorkspaceHierarchicalSymbolsOrchestrator.cs │ │ ├── WorkspaceMemberSymbolsOrchestrator.cs │ │ ├── WorkspacePipeline.cs │ │ └── WorkspaceReferencedSymbolsSection.cs │ │ └── WorkspaceFolderMigrationService.cs ├── Rubberduck.ServerPlatform │ ├── AssemblyExtensions.cs │ ├── ClientProcessHealthCheckService.cs │ ├── Extensions.cs │ ├── FolderExtensions.cs │ ├── ILanguageClientService.cs │ ├── IServerStateWriter.cs │ ├── ITelemetryTransmitter.cs │ ├── InitializeParamsExtensions.cs │ ├── InvalidInitializeParamsException.cs │ ├── Logging │ │ └── LanguageServerClientLoggerTarget.cs │ ├── Model │ │ ├── Database │ │ │ ├── AnnotationBase.cs │ │ │ ├── DbEntity.cs │ │ │ ├── Declaration.cs │ │ │ ├── DeclarationAnnotation.cs │ │ │ ├── DeclarationAttribute.cs │ │ │ ├── IQueryOptions.cs │ │ │ ├── IdentifierReference.cs │ │ │ ├── IdentifierReferenceAnnotation.cs │ │ │ ├── Local.cs │ │ │ ├── Member.cs │ │ │ ├── Module.cs │ │ │ ├── Parameter.cs │ │ │ ├── Parameters │ │ │ │ ├── ConnectParams.cs │ │ │ │ └── DisconnectParams.cs │ │ │ ├── PrimaryKeyRequestOptions.cs │ │ │ ├── Project.cs │ │ │ ├── ProjectSetting.cs │ │ │ ├── Responses │ │ │ │ ├── QueryResult.cs │ │ │ │ └── SuccessResult.cs │ │ │ └── SqlQuery.cs │ │ └── Telemetry │ │ │ ├── DependencyTelemetry.cs │ │ │ ├── EventTelemetry.cs │ │ │ ├── ExceptionTelemetry.cs │ │ │ ├── MetricMeasurementTelemetry.cs │ │ │ ├── PageViewTelemetry.cs │ │ │ ├── RequestTelemetry.cs │ │ │ ├── TelemetryContext.cs │ │ │ ├── TelemetryCustomPropertyName.cs │ │ │ ├── TelemetryEvent.cs │ │ │ ├── TelemetryEventPayload.cs │ │ │ ├── TelemetryEventSeverityLevel.cs │ │ │ └── TraceTelemetry.cs │ ├── Rubberduck.ServerPlatform.csproj │ ├── RubberduckClientApp.cs │ ├── RubberduckServerApp.cs │ ├── RubberduckServerProcess.cs │ ├── ServerArgs.cs │ ├── ServerPlatformClientService.cs │ ├── ServerPlatformServiceBase.cs │ ├── ServerPlatformServiceHelper.cs │ ├── ServerSplash.cs │ ├── ServerState.cs │ ├── ServerStateNotInitializedException.cs │ ├── UnsupportedTransportTypeException.cs │ ├── WorkDoneProgressParams.cs │ ├── WorkspaceRootResolver.cs │ └── packages.config ├── Rubberduck.TelemetryServer │ ├── Ducky.ico │ ├── Handlers │ │ ├── Lifecycle │ │ │ ├── ExitHandler.cs │ │ │ ├── InitializedHandler.cs │ │ │ ├── SetTraceHandler.cs │ │ │ └── ShutdownHandler.cs │ │ └── TelemetryEventHandler.cs │ ├── NLog-telemetry-server.config │ ├── NLog.xsd │ ├── Program.cs │ ├── Rubberduck.TelemetryServer.csproj │ ├── ServerApp.cs │ ├── TelemetryServerState.cs │ ├── TelemetryService.cs │ └── TelemetryTransmitter.cs └── Rubberduck.UpdateServer │ ├── Ducky.ico │ ├── Handlers │ └── Lifecycle │ │ ├── ExitHandler.cs │ │ ├── InitializedHandler.cs │ │ ├── SetTraceHandler.cs │ │ └── ShutdownHandler.cs │ ├── NLog-update-server.config │ ├── NLog.xsd │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Rubberduck.UpdateServer.csproj │ ├── ServerApp.cs │ ├── UpdateServerState.cs │ └── VersionCheckService.cs ├── Shared ├── Rubberduck.InternalApi │ ├── Common │ │ ├── ExperimentalAttribute.cs │ │ ├── IExportable.cs │ │ ├── IOperatingSystem.cs │ │ ├── TimedAction.cs │ │ ├── WindowsOperatingSystem.cs │ │ └── WindowsVersion.cs │ ├── Extensions │ │ ├── ComponentTypeExtensions.cs │ │ ├── DictionaryExtensions.cs │ │ ├── EnumerableExtensions.cs │ │ ├── FolderExtensions.cs │ │ ├── ILogLevelService.cs │ │ ├── LoggerExtensions.cs │ │ ├── MarkdownExtensions.cs │ │ ├── QualifiedModuleNameExtensions.cs │ │ ├── ReadOnlyListExtensions.cs │ │ ├── StringExtensions.cs │ │ ├── UriExtensions.cs │ │ └── WorkspaceUri.cs │ ├── Model │ │ ├── Abstract │ │ │ ├── IServerStatusViewModel.cs │ │ │ ├── IStatusUpdate.cs │ │ │ └── ISyntaxErrorViewModel.cs │ │ ├── Accessibility.cs │ │ ├── DeclarationType.cs │ │ ├── Declarations │ │ │ ├── Attributes.cs │ │ │ ├── ComponentKind.cs │ │ │ ├── Execution │ │ │ │ ├── Operators │ │ │ │ │ ├── Abstract │ │ │ │ │ │ ├── VBBinaryOperator.cs │ │ │ │ │ │ ├── VBBitwiseOperator.cs │ │ │ │ │ │ ├── VBComparisonOperator.cs │ │ │ │ │ │ ├── VBOperator.cs │ │ │ │ │ │ └── VBUnaryOperator.cs │ │ │ │ │ ├── SymbolOperation.cs │ │ │ │ │ ├── VBAdditionOperator.cs │ │ │ │ │ ├── VBAddressOfOperator.cs │ │ │ │ │ ├── VBAndOperator.cs │ │ │ │ │ ├── VBAssignmentOperator.cs │ │ │ │ │ ├── VBCompareEqualOperator.cs │ │ │ │ │ ├── VBCompareGreaterThanOperator.cs │ │ │ │ │ ├── VBCompareGreaterThanOrEqualOperator.cs │ │ │ │ │ ├── VBCompareIsOperator.cs │ │ │ │ │ ├── VBCompareLessThanOperator.cs │ │ │ │ │ ├── VBCompareLessThanOrEqualOperator.cs │ │ │ │ │ ├── VBCompareLikeOperator.cs │ │ │ │ │ ├── VBCompareNotEqualOperator.cs │ │ │ │ │ ├── VBConcatOperator.cs │ │ │ │ │ ├── VBDivisionOperator.cs │ │ │ │ │ ├── VBEqvOperator.cs │ │ │ │ │ ├── VBImpOperator.cs │ │ │ │ │ ├── VBIntegerDivisionOperator.cs │ │ │ │ │ ├── VBLBoundOperator.cs │ │ │ │ │ ├── VBModuloOperator.cs │ │ │ │ │ ├── VBMultiplicationOperator.cs │ │ │ │ │ ├── VBNegationOperator.cs │ │ │ │ │ ├── VBNewOperator.cs │ │ │ │ │ ├── VBNotOperator.cs │ │ │ │ │ ├── VBOrOperator.cs │ │ │ │ │ ├── VBPowerOperator.cs │ │ │ │ │ ├── VBSubtractionOperator.cs │ │ │ │ │ ├── VBTypeOfOperator.cs │ │ │ │ │ ├── VBUBoundOperator.cs │ │ │ │ │ └── VBXorOperator.cs │ │ │ │ ├── StandardLibrary │ │ │ │ │ └── Conversion.cs │ │ │ │ ├── VBExecutionContext.cs │ │ │ │ ├── VBExecutionScope.cs │ │ │ │ ├── VBRuntimeErrorException.cs │ │ │ │ └── Values │ │ │ │ │ ├── INumericValue.cs │ │ │ │ │ ├── VBArrayValue.cs │ │ │ │ │ ├── VBBooleanValue.cs │ │ │ │ │ ├── VBByteValue.cs │ │ │ │ │ ├── VBCurrencyValue.cs │ │ │ │ │ ├── VBDateValue.cs │ │ │ │ │ ├── VBDecimalValue.cs │ │ │ │ │ ├── VBDoubleValue.cs │ │ │ │ │ ├── VBEmptyValue.cs │ │ │ │ │ ├── VBErrorValue.cs │ │ │ │ │ ├── VBFixedStringValue.cs │ │ │ │ │ ├── VBIntegerValue.cs │ │ │ │ │ ├── VBLongLongValue.cs │ │ │ │ │ ├── VBLongPtrValue.cs │ │ │ │ │ ├── VBLongValue.cs │ │ │ │ │ ├── VBMissingValue.cs │ │ │ │ │ ├── VBNothingValue.cs │ │ │ │ │ ├── VBNullValue.cs │ │ │ │ │ ├── VBNumericTypedValue.cs │ │ │ │ │ ├── VBObjectValue.cs │ │ │ │ │ ├── VBSingleValue.cs │ │ │ │ │ ├── VBStringValue.cs │ │ │ │ │ ├── VBTypeDescValue.cs │ │ │ │ │ ├── VBTypedValue.cs │ │ │ │ │ ├── VBUserDefinedTypeValue.cs │ │ │ │ │ └── VBVariantValue.cs │ │ │ ├── IAnnotatedSymbol.cs │ │ │ ├── IAnnotation.cs │ │ │ ├── IAttributeAnnotation.cs │ │ │ ├── IParseTreeAnnotation.cs │ │ │ ├── ITestAnnotation.cs │ │ │ ├── Symbols │ │ │ │ ├── AbsoluteToken.cs │ │ │ │ ├── ClassModuleSymbol.cs │ │ │ │ ├── IDeclaredTypeSymbol.cs │ │ │ │ ├── ITypedSymbol.cs │ │ │ │ ├── IValuedSymbol.cs │ │ │ │ ├── PrecompilerConstantValue.cs │ │ │ │ ├── ProjectSymbol.cs │ │ │ │ ├── StandardModuleSymbol.cs │ │ │ │ └── Symbol.cs │ │ │ └── Types │ │ │ │ ├── Abstract │ │ │ │ ├── IEnumerableType.cs │ │ │ │ ├── INumericType.cs │ │ │ │ ├── IVBDeclaredType.cs │ │ │ │ ├── IVBMemberOwnerType.cs │ │ │ │ ├── VBIntrinsicType.cs │ │ │ │ ├── VBMemberOwnerType.cs │ │ │ │ ├── VBReturningMember.cs │ │ │ │ ├── VBType.cs │ │ │ │ └── VBTypeDescValue.cs │ │ │ │ ├── Complex │ │ │ │ ├── VBClassType.cs │ │ │ │ ├── VBCollectionType.cs │ │ │ │ ├── VBEnumType.cs │ │ │ │ ├── VBStdModuleType.cs │ │ │ │ └── VBUserDefinedType.cs │ │ │ │ ├── Members │ │ │ │ ├── VBEnumMember.cs │ │ │ │ ├── VBFunctionMember.cs │ │ │ │ ├── VBProcedureMember.cs │ │ │ │ ├── VBPropertyGetMember.cs │ │ │ │ ├── VBPropertyLetMember.cs │ │ │ │ ├── VBPropertySetMember.cs │ │ │ │ └── VBUserDefinedTypeMember.cs │ │ │ │ ├── VBArrayType.cs │ │ │ │ ├── VBBooleanType.cs │ │ │ │ ├── VBByteType.cs │ │ │ │ ├── VBCurrencyType.cs │ │ │ │ ├── VBDateType.cs │ │ │ │ ├── VBDecimalType.cs │ │ │ │ ├── VBDoubleType.cs │ │ │ │ ├── VBEmptyType.cs │ │ │ │ ├── VBErrorType.cs │ │ │ │ ├── VBIntegerType.cs │ │ │ │ ├── VBLongLongType.cs │ │ │ │ ├── VBLongPtrType.cs │ │ │ │ ├── VBLongType.cs │ │ │ │ ├── VBMissingType.cs │ │ │ │ ├── VBNullType.cs │ │ │ │ ├── VBObjectType.cs │ │ │ │ ├── VBSingleType.cs │ │ │ │ ├── VBStringType.cs │ │ │ │ └── VBVariantType.cs │ │ ├── Document │ │ │ ├── BlockFoldingInfo.cs │ │ │ └── NamedOffsetInfo.cs │ │ ├── DocumentOffset.cs │ │ ├── MemberType.cs │ │ ├── ModuleType.cs │ │ ├── ParameterModifier.cs │ │ ├── ParameterSymbolModifier.cs │ │ ├── RubberduckDiagnostic.cs │ │ ├── RubberduckFoldingKind.cs │ │ ├── SyntaxErrorInfo.cs │ │ ├── Tokens.cs │ │ └── Workspace │ │ │ ├── DocClassType.cs │ │ │ ├── File.cs │ │ │ ├── Folder.cs │ │ │ ├── Module.cs │ │ │ ├── Project.cs │ │ │ ├── ProjectFile.cs │ │ │ ├── ProjectTemplate.cs │ │ │ ├── Reference.cs │ │ │ └── VBProjectInfo.cs │ ├── README.md │ ├── Rubberduck.InternalApi.csproj │ ├── ServerPlatform │ │ ├── ILanguageServerConnectionStatusProvider.cs │ │ ├── InitializationOptions.cs │ │ ├── InvalidRequestParamsException.cs │ │ ├── LanguageServer │ │ │ ├── ConcurrentContentStore.cs │ │ │ ├── DocumentContentStore.cs │ │ │ ├── DocumentState.cs │ │ │ ├── RubberduckSymbolKind.cs │ │ │ ├── SupportedLanguage.cs │ │ │ ├── SyntaxErrorException.cs │ │ │ └── SyntaxErrorOffendingSymbol.cs │ │ ├── LogMessagePayload.cs │ │ ├── RequestFailedException.cs │ │ ├── TelemetryServer │ │ │ └── TelemetryEventName.cs │ │ └── UpdateServer │ │ │ ├── IUpdateClient.cs │ │ │ └── RubberduckReleaseInfo.cs │ ├── Services │ │ ├── AppWorkspacesService.cs │ │ ├── IAppWorkspacesService.cs │ │ ├── IAppWorkspacesStateManager.cs │ │ ├── IProjectFileService.cs │ │ ├── IWorkspaceFolderService.cs │ │ ├── IWorkspaceState.cs │ │ ├── LanguageServerProvider.cs │ │ ├── PerformanceRecord.cs │ │ ├── PerformanceRecordAggregator.cs │ │ ├── ProjectFileService.cs │ │ ├── ServiceBase.cs │ │ ├── TimedActionFailedException.cs │ │ ├── WorkspaceFolderService.cs │ │ └── WorkspaceStateManager.cs │ ├── Settings │ │ ├── DefaultLanguageServerSettingsProvider.cs │ │ ├── DefaultUpdateServerSettingsProvider.cs │ │ ├── IDefaultSettingsProvider.cs │ │ ├── IHealthCheckSettingsProvider.cs │ │ ├── IProcessStartInfoArgumentProvider.cs │ │ ├── ISettingsProvider.cs │ │ ├── ISettingsService.cs │ │ ├── MessageMode.cs │ │ ├── MessageTraceLevel.cs │ │ ├── Model │ │ │ ├── BooleanRubberduckSetting.cs │ │ │ ├── Editor │ │ │ │ ├── CodeFolding │ │ │ │ │ ├── CodeFoldingSettings.cs │ │ │ │ │ ├── FoldBlockStatementsSetting.cs │ │ │ │ │ ├── FoldModuleAttributesSetting.cs │ │ │ │ │ ├── FoldModuleDeclarationsSetting.cs │ │ │ │ │ ├── FoldModuleHeaderSetting.cs │ │ │ │ │ ├── FoldRegionsSetting.cs │ │ │ │ │ └── FoldScopesSetting.cs │ │ │ │ ├── EditorSettings.cs │ │ │ │ ├── ExtendWindowChromeSetting.cs │ │ │ │ ├── IdleTimerDurationSetting.cs │ │ │ │ ├── ShowWelcomeTabSetting.cs │ │ │ │ └── Tools │ │ │ │ │ ├── AutoHideToolWindowSetting.cs │ │ │ │ │ ├── DefaultToolWindowLocationSetting.cs │ │ │ │ │ ├── DockingLocation.cs │ │ │ │ │ ├── ServerTraceSettings.cs │ │ │ │ │ ├── ShowToolWindowOnStartupSetting.cs │ │ │ │ │ ├── ShowWorkspaceExplorerOnProjectOpenSetting.cs │ │ │ │ │ ├── ToolWindowSettings.cs │ │ │ │ │ ├── ToolsSettings.cs │ │ │ │ │ └── WorkspaceExplorerSettings.cs │ │ │ ├── General │ │ │ │ ├── DisableInitialLegacyIndenterCheckSetting.cs │ │ │ │ ├── GeneralSettings.cs │ │ │ │ ├── LocaleSetting.cs │ │ │ │ ├── ShowSplashSetting.cs │ │ │ │ └── TemplatesLocationSetting.cs │ │ │ ├── LanguageClient │ │ │ │ ├── DefaultWorkspaceRootSetting.cs │ │ │ │ ├── DisabledMessageKeysSetting.cs │ │ │ │ ├── EnableFileSystemWatchersSetting.cs │ │ │ │ ├── EnableUncWorkspacesSetting.cs │ │ │ │ ├── ExitNotificationDelaySetting.cs │ │ │ │ ├── LanguageClientSettings.cs │ │ │ │ ├── LanguageClientStartupSettings.cs │ │ │ │ ├── RequireAddInHostSetting.cs │ │ │ │ ├── RequireDefaultWorkspaceRootHostSetting.cs │ │ │ │ ├── RequireSavedHostSetting.cs │ │ │ │ └── WorkspaceSettings.cs │ │ │ ├── LanguageServer │ │ │ │ ├── Diagnostics │ │ │ │ │ └── DiagnosticsSettings.cs │ │ │ │ ├── LanguageServerSettings.cs │ │ │ │ └── LanguageServerStartupSettings.cs │ │ │ ├── Logging │ │ │ │ ├── AggregatePerformanceLogsSetting.cs │ │ │ │ ├── DisableInitialLogLevelResetSetting.cs │ │ │ │ ├── LogLevelSetting.cs │ │ │ │ └── LoggingSettings.cs │ │ │ ├── NumericRubberduckSetting.cs │ │ │ ├── RubberduckSetting.cs │ │ │ ├── RubberduckSettings.cs │ │ │ ├── ServerStartup │ │ │ │ ├── ClientHealthCheckIntervalSetting.cs │ │ │ │ ├── ServerExecutablePathSetting.cs │ │ │ │ ├── ServerMessageModeSetting.cs │ │ │ │ ├── ServerPipeNameSetting.cs │ │ │ │ ├── ServerStartupSettings.cs │ │ │ │ ├── ServerTransportTypeSetting.cs │ │ │ │ ├── TraceLevelSetting.cs │ │ │ │ └── TransportType.cs │ │ │ ├── SettingDataType.cs │ │ │ ├── SettingTags.cs │ │ │ ├── StringRubberduckSetting.cs │ │ │ ├── TelemetrySensitiveAttribute.cs │ │ │ ├── TelemetryServer │ │ │ │ ├── IsTelemetryEnabledSetting.cs │ │ │ │ ├── SendEventTelemetrySetting.cs │ │ │ │ ├── SendExceptionTelemetrySetting.cs │ │ │ │ ├── SendMetricTelemetrySetting.cs │ │ │ │ ├── SendTraceTelemetrySetting.cs │ │ │ │ ├── StreamTransmissionSetting.cs │ │ │ │ ├── TelemetryEventQueueSizeSetting.cs │ │ │ │ ├── TelemetryServerSettings.cs │ │ │ │ └── TelemetryServerStartupSettings.cs │ │ │ ├── TraceLevelExtensions.cs │ │ │ ├── TypedRubberduckSetting.cs │ │ │ ├── TypedSettingGroup.cs │ │ │ ├── UpdateServer │ │ │ │ ├── IncludePreReleasesSetting.cs │ │ │ │ ├── IsUpdateServerEnabledSetting.cs │ │ │ │ ├── UpdateServerSettings.cs │ │ │ │ ├── UpdateServerStartupSettings.cs │ │ │ │ └── WebApiBaseUrlSetting.cs │ │ │ └── UriRubberduckSetting.cs │ │ ├── ServerPlatformSettings.cs │ │ ├── SettingsChangedEventArgs.cs │ │ └── SettingsService.cs │ ├── WebApi │ │ ├── ApiClientBase.cs │ │ ├── ApiException.cs │ │ ├── IPublicApiClient.cs │ │ ├── Model │ │ │ ├── Entity.cs │ │ │ ├── Example.cs │ │ │ ├── ExampleModule.cs │ │ │ ├── ExampleModuleType.cs │ │ │ ├── Feature.cs │ │ │ ├── FeatureItem.cs │ │ │ ├── IEntity.cs │ │ │ ├── Tag.cs │ │ │ └── TagAsset.cs │ │ └── PublicApiClient.cs │ ├── app.config │ └── appsettings.json └── Rubberduck.Resources │ ├── About │ ├── AboutUI.Designer.cs │ ├── AboutUI.cs.Designer.cs │ ├── AboutUI.cs.resx │ ├── AboutUI.de.Designer.cs │ ├── AboutUI.de.resx │ ├── AboutUI.es.resx │ ├── AboutUI.fr.Designer.cs │ ├── AboutUI.fr.resx │ ├── AboutUI.it.resx │ └── AboutUI.resx │ ├── ApplicationConstants.cs │ ├── Ducky.ico │ ├── Icons │ ├── Custom │ │ ├── Mask │ │ │ ├── AddPropertyMask.bmp │ │ │ ├── AddVariableMask.bmp │ │ │ ├── AllLoadedTestsMask.bmp │ │ │ ├── ExtractInterfaceMask.bmp │ │ │ ├── ExtractMethodMask.bmp │ │ │ ├── FindSymbolMask.bmp │ │ │ ├── ImplementInterfaceMask.bmp │ │ │ ├── PromoteLocalMask.bmp │ │ │ ├── RemoveParametersMask.bmp │ │ │ ├── ReorderParametersMask.bmp │ │ │ └── TestManagerMask.bmp │ │ ├── PNG │ │ │ ├── AccessibilityFriend.png │ │ │ ├── AccessibilityPrivate.png │ │ │ ├── AccessibilityStatic.png │ │ │ ├── AddClass.png │ │ │ ├── AddEvent.png │ │ │ ├── AddForm.png │ │ │ ├── AddMdiForm.png │ │ │ ├── AddMethod.png │ │ │ ├── AddModule.png │ │ │ ├── AddProperty.png │ │ │ ├── AddPropertyPage.png │ │ │ ├── AddResourceFile.png │ │ │ ├── AddUserControl.png │ │ │ ├── AddUserDocument.png │ │ │ ├── AddVariable.png │ │ │ ├── AllLoadedTests.png │ │ │ ├── ApplyCodeChanges.png │ │ │ ├── BrokenReference.png │ │ │ ├── CollapseDown.png │ │ │ ├── CollapseUp.png │ │ │ ├── DefaultMemberDot.png │ │ │ ├── DisplayFullSignature.png │ │ │ ├── DisplayName.png │ │ │ ├── Document.png │ │ │ ├── ExportTestRunResults.png │ │ │ ├── ExtractInterface.png │ │ │ ├── ExtractMethod.png │ │ │ ├── FindSymbol.png │ │ │ ├── FolderClosed.png │ │ │ ├── FolderClosedHidden.png │ │ │ ├── FolderClosedVirtual.png │ │ │ ├── FolderOpen.png │ │ │ ├── FolderOpenHidden.png │ │ │ ├── FolderOpenVirtual.png │ │ │ ├── GenerateMethod.png │ │ │ ├── GroupBy.png │ │ │ ├── ImplementInterface.png │ │ │ ├── ListOfTests.png │ │ │ ├── LockedReference.png │ │ │ ├── MdiForm.png │ │ │ ├── NewConstant.png │ │ │ ├── NewEvent.png │ │ │ ├── ObjectAssembly.png │ │ │ ├── ObjectClass.png │ │ │ ├── ObjectClassFriend.png │ │ │ ├── ObjectClassPredeclared.png │ │ │ ├── ObjectClassPrivate.png │ │ │ ├── ObjectClassProtected.png │ │ │ ├── ObjectClassSealed.png │ │ │ ├── ObjectClassShortcut.png │ │ │ ├── ObjectConstant.png │ │ │ ├── ObjectConstantFriend.png │ │ │ ├── ObjectConstantPrivate.png │ │ │ ├── ObjectConstantProtected.png │ │ │ ├── ObjectConstantSealed.png │ │ │ ├── ObjectConstantShortcut.png │ │ │ ├── ObjectEnum.png │ │ │ ├── ObjectEnumFriend.png │ │ │ ├── ObjectEnumItem.png │ │ │ ├── ObjectEnumItemFriend.png │ │ │ ├── ObjectEnumItemPrivate.png │ │ │ ├── ObjectEnumItemProtected.png │ │ │ ├── ObjectEnumItemSealed.png │ │ │ ├── ObjectEnumItemShortcut.png │ │ │ ├── ObjectEnumPrivate.png │ │ │ ├── ObjectEnumProtected.png │ │ │ ├── ObjectEnumSealed.png │ │ │ ├── ObjectEnumShortcut.png │ │ │ ├── ObjectEvent.png │ │ │ ├── ObjectEventFriend.png │ │ │ ├── ObjectEventPrivate.png │ │ │ ├── ObjectEventProtected.png │ │ │ ├── ObjectEventSealed.png │ │ │ ├── ObjectEventShortcut.png │ │ │ ├── ObjectField.png │ │ │ ├── ObjectFieldFriend.png │ │ │ ├── ObjectFieldPrivate.png │ │ │ ├── ObjectFieldProtected.png │ │ │ ├── ObjectFieldSealed.png │ │ │ ├── ObjectFieldShortcut.png │ │ │ ├── ObjectInterface.png │ │ │ ├── ObjectLibrary.png │ │ │ ├── ObjectLibraryFunction.png │ │ │ ├── ObjectMethod.png │ │ │ ├── ObjectMethodFriend.png │ │ │ ├── ObjectMethodPrivate.png │ │ │ ├── ObjectMethodProtected.png │ │ │ ├── ObjectMethodSealed.png │ │ │ ├── ObjectMethodShortcut.png │ │ │ ├── ObjectModule.png │ │ │ ├── ObjectModuleFriend.png │ │ │ ├── ObjectModulePrivate.png │ │ │ ├── ObjectModuleProtected.png │ │ │ ├── ObjectModuleSealed.png │ │ │ ├── ObjectModuleShortcut.png │ │ │ ├── ObjectProperties.png │ │ │ ├── ObjectPropertiesFriend.png │ │ │ ├── ObjectPropertiesPrivate.png │ │ │ ├── ObjectPropertiesProtected.png │ │ │ ├── ObjectPropertiesSealed.png │ │ │ ├── ObjectPropertiesShortcut.png │ │ │ ├── ObjectPropertyGet.png │ │ │ ├── ObjectPropertyLet.png │ │ │ ├── ObjectPropertySet.png │ │ │ ├── ObjectStructure.png │ │ │ ├── ObjectStructureFriend.png │ │ │ ├── ObjectStructurePrivate.png │ │ │ ├── ObjectStructureProtected.png │ │ │ ├── ObjectStructureSealed.png │ │ │ ├── ObjectStructureShortcut.png │ │ │ ├── ObjectType.png │ │ │ ├── ObjectTypeFriend.png │ │ │ ├── ObjectTypePrivate.png │ │ │ ├── ObjectTypeProtected.png │ │ │ ├── ObjectTypeSealed.png │ │ │ ├── ObjectTypeShortcut.png │ │ │ ├── ObjectValueType.png │ │ │ ├── ObjectValueTypeFriend.png │ │ │ ├── ObjectValueTypePrivate.png │ │ │ ├── ObjectValueTypeProtected.png │ │ │ ├── ObjectValueTypeSealed.png │ │ │ ├── ObjectValueTypeShortcut.png │ │ │ ├── Options.png │ │ │ ├── Play.png │ │ │ ├── ProjectForm.png │ │ │ ├── ProjectReference.png │ │ │ ├── PromoteLocal.png │ │ │ ├── Recursion.png │ │ │ ├── Refresh.png │ │ │ ├── RemoveParameters.png │ │ │ ├── ReorderParameters.png │ │ │ ├── Services.png │ │ │ ├── Severity.png │ │ │ ├── StepRunTest.png │ │ │ ├── SyncArrows.png │ │ │ ├── Task.png │ │ │ ├── TestManager.png │ │ │ └── TestMethod.png │ │ ├── attribution.txt │ │ ├── cc_license.txt │ │ └── mit_license.txt │ ├── Ducky.ico │ ├── Fugue │ │ ├── Funnel.png │ │ ├── application-resize.png │ │ ├── arrow-090-dimmed.png │ │ ├── arrow-090.png │ │ ├── arrow-180.png │ │ ├── arrow-270-dimmed.png │ │ ├── arrow-270.png │ │ ├── arrow-branch-090.png │ │ ├── arrow-circle-double.png │ │ ├── arrow-circle-left.png │ │ ├── arrow-merge-090.png │ │ ├── arrow-repeat.png │ │ ├── arrow-repeat1.png │ │ ├── arrow-return-180-left.png │ │ ├── arrow-split.png │ │ ├── arrow-step.png │ │ ├── arrow.png │ │ ├── arrow1.png │ │ ├── arrow_circle_double_mask.bmp │ │ ├── balloon-prohibition.png │ │ ├── balloon_ellipsis.bmp │ │ ├── balloon_mask.bmp │ │ ├── balloon_prohibition.bmp │ │ ├── balloon_smiley.bmp │ │ ├── block.png │ │ ├── blue-folder-horizontal-open.png │ │ ├── blue-folder-horizontal.png │ │ ├── circle_mask.bmp │ │ ├── clock-network.png │ │ ├── clock-select-pinned.png │ │ ├── clock-select.png │ │ ├── clock.png │ │ ├── collapse-all.png │ │ ├── control-000-small.png │ │ ├── control-pause.png │ │ ├── control-power.png │ │ ├── control-stop-square.png │ │ ├── control.png │ │ ├── creative-commons.png │ │ ├── cross-button.png │ │ ├── cross-circle.png │ │ ├── cross-script.png │ │ ├── disk.png │ │ ├── document--exclamation.png │ │ ├── document--minus.png │ │ ├── document--pencil.png │ │ ├── document--plus.png │ │ ├── document-block.png │ │ ├── document-broken.png │ │ ├── document-code.png │ │ ├── document-convert.png │ │ ├── document-copy.png │ │ ├── document-excel.png │ │ ├── document-export.png │ │ ├── document-globe.png │ │ ├── document-import.png │ │ ├── document-office.png │ │ ├── document-outlook.png │ │ ├── document-powerpoint.png │ │ ├── document-search-result.png │ │ ├── document-smiley-sad.png │ │ ├── document-smiley.png │ │ ├── document-stand.png │ │ ├── document-sticky-note.png │ │ ├── document-text.png │ │ ├── document-word.png │ │ ├── drive--exclamation.png │ │ ├── drive-download.png │ │ ├── drive-network.png │ │ ├── drive-upload.png │ │ ├── edit-list-order.png │ │ ├── edit-size.png │ │ ├── exclamation-circle.png │ │ ├── exclamation-diamond.png │ │ ├── exclamation-pinned.png │ │ ├── exclamation-white.png │ │ ├── exclamation.png │ │ ├── expand-all.png │ │ ├── flask--arrow.png │ │ ├── flask--exclamation.png │ │ ├── flask--pencil.png │ │ ├── flask--plus.png │ │ ├── flask-empty.png │ │ ├── flask-question.png │ │ ├── flask-tag.png │ │ ├── flask-undo.png │ │ ├── flask.png │ │ ├── flask_exclamation_mask.png │ │ ├── flask_mask.png │ │ ├── folder--pencil.png │ │ ├── folder--plus.png │ │ ├── folder-horizontal-open.png │ │ ├── folder-horizontal.png │ │ ├── folder-open.png │ │ ├── folder-rename.png │ │ ├── folder.png │ │ ├── gear.png │ │ ├── git.png │ │ ├── hourglass.png │ │ ├── icon-github.png │ │ ├── information-white.png │ │ ├── information.png │ │ ├── init-repo.png │ │ ├── light-bulb-code.png │ │ ├── lock--exclamation.png │ │ ├── lock-pinned.png │ │ ├── lock.png │ │ ├── magnifier--arrow.png │ │ ├── magnifier-medium.png │ │ ├── minus-circle.png │ │ ├── minus-white.png │ │ ├── navigation-180.png │ │ ├── navigation.png │ │ ├── node-select-all.png │ │ ├── pencil-ruler.png │ │ ├── pinned.png │ │ ├── plus-circle-pinned.png │ │ ├── plus-circle.png │ │ ├── plus-circle1.png │ │ ├── printer.png │ │ ├── question-white.png │ │ ├── selection-input.png │ │ ├── skull-mad.png │ │ ├── socket.png │ │ ├── status-offline.png │ │ ├── sticky-note-pin.png │ │ ├── tag-label-gray.png │ │ ├── terminal.png │ │ ├── tick-circle-pinned.png │ │ ├── tick-circle.png │ │ ├── tick.png │ │ ├── todo-completed.png │ │ ├── ui-scroll-pane-form.png │ │ ├── ui-tab-content.png │ │ ├── user-medium-silhouette.png │ │ └── user-silhouette.png │ ├── RubberduckIcons.Designer.cs │ ├── RubberduckIcons.resx │ ├── black-vector-ducky.ico │ ├── white-vector-ducky.ico │ └── yellow-vector-ducky.ico │ ├── Inspections │ ├── InspectionInfo.Designer.cs │ ├── InspectionInfo.cs.resx │ ├── InspectionInfo.de.Designer.cs │ ├── InspectionInfo.de.resx │ ├── InspectionInfo.es.resx │ ├── InspectionInfo.fr.Designer.cs │ ├── InspectionInfo.fr.resx │ ├── InspectionInfo.it.resx │ ├── InspectionInfo.resx │ ├── InspectionNames.Designer.cs │ ├── InspectionNames.cs.resx │ ├── InspectionNames.de.Designer.cs │ ├── InspectionNames.de.resx │ ├── InspectionNames.es.resx │ ├── InspectionNames.fr.Designer.cs │ ├── InspectionNames.fr.resx │ ├── InspectionNames.it.resx │ ├── InspectionNames.resx │ ├── InspectionResults.Designer.cs │ ├── InspectionResults.cs.resx │ ├── InspectionResults.de.Designer.cs │ ├── InspectionResults.de.resx │ ├── InspectionResults.es.resx │ ├── InspectionResults.fr.Designer.cs │ ├── InspectionResults.fr.resx │ ├── InspectionResults.it.resx │ ├── InspectionResults.resx │ ├── InspectionsUI.Designer.cs │ ├── InspectionsUI.cs.resx │ ├── InspectionsUI.de.Designer.cs │ ├── InspectionsUI.de.resx │ ├── InspectionsUI.es.resx │ ├── InspectionsUI.fr.Designer.cs │ ├── InspectionsUI.fr.resx │ ├── InspectionsUI.it.resx │ ├── InspectionsUI.resx │ ├── QuickFixes.Designer.cs │ ├── QuickFixes.cs.resx │ ├── QuickFixes.de.resx │ ├── QuickFixes.es.resx │ ├── QuickFixes.fr.resx │ ├── QuickFixes.it.resx │ └── QuickFixes.resx │ ├── Locales.cs │ ├── MemberTypeIcons.Designer.cs │ ├── MemberTypeIcons.resx │ ├── Menus │ ├── RubberduckMenus.Designer.cs │ ├── RubberduckMenus.cs.Designer.cs │ ├── RubberduckMenus.cs.resx │ ├── RubberduckMenus.de.Designer.cs │ ├── RubberduckMenus.de.resx │ ├── RubberduckMenus.es.resx │ ├── RubberduckMenus.fr.Designer.cs │ ├── RubberduckMenus.fr.resx │ ├── RubberduckMenus.it.resx │ └── RubberduckMenus.resx │ ├── Paintdotnet │ ├── Splash320x360.pdn │ └── faint-ducky.pdn │ ├── Resources │ ├── circle-arrow-right-solid.png │ ├── circle-check-solid.png │ ├── circle-exclamation-solid.png │ ├── file-code-regular.png │ ├── file-lines-regular.png │ ├── file-regular.png │ ├── folder-closed-regular.png │ ├── hourglass-half-solid.png │ └── xmark-solid.png │ ├── Rubberduck.Resources.csproj │ ├── RubberduckUI.Designer.cs │ ├── RubberduckUI.cs.Designer.cs │ ├── RubberduckUI.cs.resx │ ├── RubberduckUI.de.Designer.cs │ ├── RubberduckUI.de.resx │ ├── RubberduckUI.es.resx │ ├── RubberduckUI.fr.Designer.cs │ ├── RubberduckUI.fr.resx │ ├── RubberduckUI.it.resx │ ├── RubberduckUI.resx │ └── v3 │ ├── Icons.Designer.cs │ ├── Icons.resx │ ├── LogLevelIcons.Designer.cs │ ├── LogLevelIcons.resx │ ├── RubberduckMessages.Designer.cs │ ├── RubberduckMessages.resx │ ├── RubberduckUICommands.Designer.cs │ ├── RubberduckUICommands.resx │ ├── SettingsUI.Designer.cs │ └── SettingsUI.resx ├── Switch-RDVersion.ps1 ├── Templates ├── Excel Project │ ├── .rdproj │ └── .template │ │ ├── Host │ │ ├── Sheet1.doccls │ │ └── ThisWorkbook.doccls │ │ ├── Module1.bas │ │ └── README.md ├── MVP Project │ ├── .rdproj │ └── .template │ │ ├── Abstract │ │ ├── ICancellable.cls │ │ └── IView.cls │ │ ├── Feature │ │ ├── FeatureModel.cls │ │ ├── FeaturePresenter.cls │ │ └── FeatureView.frm │ │ ├── Macros.bas │ │ ├── README.md │ │ └── Services │ │ └── SomeService.cls └── Welcome.md ├── Tests └── Rubberduck.Tests │ ├── DocumentUri │ └── WorkspaceFileUriTests.cs │ ├── Rubberduck.Tests.csproj │ ├── ServiceBaseTest.cs │ ├── TestLogger.cs │ ├── VBExecutionContextBuilder.cs │ └── VBTypes │ ├── AdditionOpTests.cs │ ├── CompareAndOpTests.cs │ ├── DivisionOpTests.cs │ ├── MultiplicationOpTests.cs │ ├── NegationOperatorTests.cs │ ├── NewOperatorTests.cs │ ├── OperatorTests.cs │ ├── SubtractionOpTests.cs │ ├── UnaryNotOpTests.cs │ ├── UnaryOperatorTests.cs │ ├── VBDoubleTypeArithmeticOpTests.cs │ └── WideningArithmeticOpTests.cs └── libs ├── Autodesk.AutoCAD.Interop.Common.dll ├── Autodesk.AutoCAD.Interop.dll ├── Corel.GraphicsSuite.Interop.CorelDRAW.dll ├── Infralution.Localization.Wpf.XML ├── Infralution.Localization.Wpf.dll ├── Interop.SldWorks.Extensibility.dll ├── Interop.SldWorks.Types.dll ├── Interop.VisioViewer.dll ├── Microsoft.Office.Interop.Access.dll ├── Microsoft.Office.Interop.Excel.dll ├── Microsoft.Office.Interop.MSProject.dll ├── Microsoft.Office.Interop.Outlook.dll ├── Microsoft.Office.Interop.PowerPoint.dll ├── Microsoft.Office.Interop.Publisher.dll ├── Microsoft.Office.Interop.Visio.dll ├── Microsoft.Office.Interop.Word.dll ├── Microsoft.Vbe.Interop.Forms.dll ├── Microsoft.Vbe.Interop.VB6.dll ├── Microsoft.Vbe.Interop.dll ├── Office.dll ├── Office.v8.dll ├── de └── Infralution.Localization.Wpf.resources.dll ├── extensibility.dll ├── fr └── Infralution.Localization.Wpf.resources.dll └── it └── Infralution.Localization.Wpf.resources.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnet-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/.github/workflows/dotnet-main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/.gitignore -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/App.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/ComClientLibrary/UI/IOleWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/ComClientLibrary/UI/IOleWrapper.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Commands/AboutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Commands/AboutCommand.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Commands/NewWorkspaceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Commands/NewWorkspaceCommand.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Commands/SettingsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Commands/SettingsCommand.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Commands/ShowApplicationTipsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Commands/ShowApplicationTipsCommand.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Ducky.ico -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Extension.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/IVBIDEAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/IVBIDEAddIn.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/NLog-addin.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/NLog-addin.config -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/NLog.dll.nlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/NLog.dll.nlog -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/NLog.xsd -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Properties/launchSettings.json -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/RPC/EditorServer/EditorClientApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/RPC/EditorServer/EditorClientApp.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/RPC/IServerProcessService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/RPC/IServerProcessService.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Root/LogLevelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Root/LogLevelService.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Root/ProjectInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Root/ProjectInfoProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Root/RootComWrapperFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Root/RootComWrapperFactory.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Root/RubberduckServicesBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Root/RubberduckServicesBuilder.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Root/VbeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Root/VbeProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/Rubberduck.Main.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/Rubberduck.Main.csproj -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/RubberduckAddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/RubberduckAddIn.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Main/StartupFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Main/StartupFailedException.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Abstract/IVbeEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Abstract/IVbeEvents.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/ComMessagePumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/ComMessagePumper.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/ComSafeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/ComSafeBase.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/ComSafeBaseDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/ComSafeBaseDebug.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/ComSafeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/ComSafeManager.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/ComWrapperEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/ComWrapperEnumerator.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/CommandBarLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/CommandBarLocation.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/CommandBarSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/CommandBarSite.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/DispatcherEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/DispatcherEventArgs.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Events/ComponentEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Events/ComponentEventArgs.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Events/ProjectEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Events/ProjectEventArgs.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Events/ProjectRenamedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Events/ProjectRenamedEventArgs.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Events/ReferenceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Events/ReferenceEventArgs.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Events/VBENativeServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Events/VBENativeServices.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Events/WindowChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Events/WindowChangedEventArgs.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/FileSystemProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/FileSystemProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/HostApplicationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/HostApplicationBase.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/IComSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/IComSafe.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/IEnumVARIANT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/IEnumVARIANT.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/IProjectsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/IProjectsProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/IProjectsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/IProjectsRepository.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Model/CodeString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Model/CodeString.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Model/ComponentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Model/ComponentType.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Model/QualifiedMemberName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Model/QualifiedMemberName.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Model/QualifiedModuleName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Model/QualifiedModuleName.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Model/QualifiedSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Model/QualifiedSelection.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Model/ReferenceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Model/ReferenceInfo.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Model/Selection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Model/Selection.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/ProjectsRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/ProjectsRepository.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/ReferenceEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/ReferenceEqualityComparer.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Registration/RubberduckGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Registration/RubberduckGuid.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Registration/RubberduckProgId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Registration/RubberduckProgId.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Registration/WellKnownDispIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Registration/WellKnownDispIds.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/RegistryWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/RegistryWrapper.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/Rubberduck.Unmanaged.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/Rubberduck.Unmanaged.csproj -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/SafeComWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/SafeComWrapper.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/SafeEventedComWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/SafeEventedComWrapper.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/SafeIDispatchWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/SafeIDispatchWrapper.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/StringExtensions.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/StrongComSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/StrongComSafe.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/Abstract/IDispatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/Abstract/IDispatch.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/Public/TypeLibsAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/Public/TypeLibsAPI.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/TypeApiFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/TypeApiFactory.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/TypeInfoFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/TypeInfoFunction.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/TypeInfoVBEExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/TypeInfoVBEExtensions.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/TypeInfoVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/TypeInfoVariable.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/TypeInfoWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/TypeInfoWrapper.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/TypeLibReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/TypeLibReference.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/TypeLibVBEExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/TypeLibVBEExtensions.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/TypeLibWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/TypeLibWrapper.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/Unmanaged/ComHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/Unmanaged/ComHelper.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/Unmanaged/ComPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/Unmanaged/ComPointer.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/Unmanaged/RDMarshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/Unmanaged/RDMarshal.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/TypeLibs/VBETypeLibsAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/TypeLibs/VBETypeLibsAccessor.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/UIContext/IUiContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/UIContext/IUiContextProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/UIContext/IUiDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/UIContext/IUiDispatcher.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/UIContext/UiContextProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/UIContext/UiContextProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/UIContext/UiDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/UIContext/UiDispatcher.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/VBERuntime/IVbeNativeApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/VBERuntime/IVbeNativeApi.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/VBERuntime/VBEDllVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/VBERuntime/VBEDllVersion.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/VBERuntime/Vb6NativeApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/VBERuntime/Vb6NativeApi.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/VBERuntime/VbeNativeApi6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/VBERuntime/VbeNativeApi6.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/VBERuntime/VbeNativeApi7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/VBERuntime/VbeNativeApi7.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WeakComSafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WeakComSafe.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/CodePaneSubclass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/CodePaneSubclass.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/EnumHelper.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/FocusSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/FocusSource.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/IFocusProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/IFocusProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/Kernel32.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/NativeMethods.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/ObjId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/ObjId.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/SHCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/SHCore.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/SubclassManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/SubclassManager.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/SubclassingWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/SubclassingWindow.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/User32.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/WM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/WM.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/WinEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/WinEvent.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/WinEventFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/WinEventFlags.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/WindowLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/WindowLocator.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/WindowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/WindowType.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.Unmanaged/WindowsApi/WindowsHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.Unmanaged/WindowsApi/WindowsHook.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/Providers/VB6AddInProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/Providers/VB6AddInProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/Providers/VB6VBEProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/Providers/VB6VBEProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/Rubberduck.VBEditor.VB6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/Rubberduck.VBEditor.VB6.csproj -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/AddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/AddIn.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/AddIns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/AddIns.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/CodePane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/CodePane.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/Events.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/Property.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/VBE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/VBE.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/VBForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/VBForm.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/Window.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/SafeComWrappers/VB/Windows.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VB6/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VB6/app.config -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/Providers/VBAAddInProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/Providers/VBAAddInProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/Providers/VBAVBEProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/Providers/VBAVBEProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/Rubberduck.VBEditor.VBA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/Rubberduck.VBEditor.VBA.csproj -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/AddIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/AddIn.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/AddIns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/AddIns.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/CodePane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/CodePane.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/Control.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/Controls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/Controls.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/Property.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/UserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/UserForm.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/VBE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/VBE.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/Window.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/SafeComWrappers/VB/Windows.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/TempSourceFileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/TempSourceFileHandler.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor.VBA/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor.VBA/app.config -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/Extensions/VBProjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/Extensions/VBProjectExtensions.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/Factories/AddInFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/Factories/AddInFactory.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/Factories/VBEFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/Factories/VBEFactory.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/Rubberduck.VBEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/Rubberduck.VBEditor.csproj -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/UI/OfficeMenus/AxHostConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/UI/OfficeMenus/AxHostConverter.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/UI/OfficeMenus/ComCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/UI/OfficeMenus/ComCommandBase.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/UI/OfficeMenus/ICommandMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/UI/OfficeMenus/ICommandMenuItem.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/UI/OfficeMenus/IMenuCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/UI/OfficeMenus/IMenuCommand.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/UI/OfficeMenus/IMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/UI/OfficeMenus/IMenuItem.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/UI/OfficeMenus/IParentMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/UI/OfficeMenus/IParentMenuItem.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/Utility/AddComponentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/Utility/AddComponentService.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/Utility/DisposalActionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/Utility/DisposalActionContainer.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/Utility/IAddComponentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/Utility/IAddComponentService.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/Utility/ISelectionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/Utility/ISelectionProvider.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/Utility/ISelectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/Utility/ISelectionService.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/VbeCommandBarMenuNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/VbeCommandBarMenuNames.cs -------------------------------------------------------------------------------- /AddIn/Rubberduck.VBEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/AddIn/Rubberduck.VBEditor/app.config -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/App.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/App.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/AssemblyInfo.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/CloseDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/CloseDocumentCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/CloseWorkspaceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/CloseWorkspaceCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/ExitCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/ExitCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/FileCommandHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/FileCommandHandlers.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/OpenDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/OpenDocumentCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/OpenProjectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/OpenProjectCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/SaveAllDocumentsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/SaveAllDocumentsCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/SaveDocumentAsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/SaveDocumentAsCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/SaveDocumentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/SaveDocumentCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/ShutdownServerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/ShutdownServerCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/ToolsCommandHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/ToolsCommandHandlers.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Commands/ViewCommandHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Commands/ViewCommandHandlers.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Common/ClipboardWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Common/ClipboardWriter.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Common/ExportFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Common/ExportFormatter.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Common/LogLevelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Common/LogLevelHelper.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/EditorServerApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/EditorServerApp.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/IPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/IPresenter.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/LanguageClientApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/LanguageClientApp.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/MessageActionItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/MessageActionItemExtensions.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/NLog-editor.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/NLog-editor.config -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/RPC/DocumentChangesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/RPC/DocumentChangesExtensions.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/RPC/LanguageServerProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/RPC/LanguageServerProcess.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Rubberduck.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Rubberduck.Editor.csproj -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Rubberduck.Editor.vba-default.xshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Rubberduck.Editor.vba-default.xshd -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Services/WorkspaceClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Services/WorkspaceClientService.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Shell/ChildWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Shell/ChildWindowViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Shell/InterTabClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Shell/InterTabClient.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Shell/Partitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Shell/Partitions.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Shell/ShellWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Shell/ShellWindowViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Shell/Splash/SplashService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Shell/Splash/SplashService.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Shell/Splash/SplashViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Shell/Splash/SplashViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/Shell/WindowChromeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/Shell/WindowChromeViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.Editor/ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.Editor/ducky.ico -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Behaviors/MaskedInputBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Behaviors/MaskedInputBehavior.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Behaviors/ScrollViewerCorrector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Behaviors/ScrollViewerCorrector.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Chrome/IWindowChromeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Chrome/IWindowChromeViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/CodeAction/DuckyButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/CodeAction/DuckyButton.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/CodeAction/DuckyButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/CodeAction/DuckyButton.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/Abstract/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/Abstract/CommandBase.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/Abstract/CommandHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/Abstract/CommandHandlers.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/Abstract/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/Abstract/DelegateCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/BrowseFileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/BrowseFileModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/NewProjectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/NewProjectCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/ShellProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/ShellProvider.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/ShowToolWindowCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/ShowToolWindowCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/ShowWorkspaceExplorerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/ShowWorkspaceExplorerCommand.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/StaticRouted/AnalyzeCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/StaticRouted/AnalyzeCommands.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/StaticRouted/DebugCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/StaticRouted/DebugCommands.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/StaticRouted/DialogCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/StaticRouted/DialogCommands.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/StaticRouted/EditCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/StaticRouted/EditCommands.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/StaticRouted/FileCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/StaticRouted/FileCommands.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/StaticRouted/HelpCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/StaticRouted/HelpCommands.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/StaticRouted/TestCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/StaticRouted/TestCommands.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/StaticRouted/ToolsCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/StaticRouted/ToolsCommands.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Command/StaticRouted/ViewCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Command/StaticRouted/ViewCommands.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Converters/ComponentTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Converters/ComponentTypeConverter.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Converters/HasItemsBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Converters/HasItemsBoolConverter.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Converters/ImageSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Converters/ImageSourceConverter.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Converters/LogLevelToIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Converters/LogLevelToIconConverter.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Converters/SubtractionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Converters/SubtractionConverter.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Ducky.ico -------------------------------------------------------------------------------- /Client/Rubberduck.UI/EnvironmentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/EnvironmentProvider.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Extensions/SelectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Extensions/SelectionExtensions.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/ICommandBindingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/ICommandBindingProvider.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/IPresenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/IPresenter.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/AddClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/AddClass.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/AddEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/AddEvent.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/AddForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/AddForm.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/AddMdiForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/AddMdiForm.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/AddMethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/AddMethod.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/AddModule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/AddModule.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/CollapseUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/CollapseUp.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/Document.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/FindSymbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/FindSymbol.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/FolderOpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/FolderOpen.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/GroupBy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/GroupBy.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/MdiForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/MdiForm.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/NewEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/NewEvent.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/ObjectEnum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/ObjectEnum.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/ObjectType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/ObjectType.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/Options.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/Play.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/Recursion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/Recursion.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/Refresh.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/Services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/Services.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/Severity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/Severity.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/SyncArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/SyncArrows.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/Task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/Task.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/Icons/TestMethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/Icons/TestMethod.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/background-ducky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/background-ducky.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/Custom/ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/Custom/ducky.ico -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/ban-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/ban-solid.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/bomb-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/bomb-solid.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/copy-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/copy-solid.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/cubes-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/cubes-solid.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/eye-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/eye-solid.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/file-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/file-solid.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/gear-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/gear-solid.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/link-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/link-solid.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/lock-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/lock-solid.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/pause-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/pause-solid.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/windows-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/windows-16.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/windows-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/windows-32.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/windows.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FontAwesome/xmark-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FontAwesome/xmark-solid.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FugueIcons/cross-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FugueIcons/cross-circle.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FugueIcons/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FugueIcons/document.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FugueIcons/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FugueIcons/information.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FugueIcons/light-bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FugueIcons/light-bulb.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/FugueIcons/tick-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/FugueIcons/tick-circle.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/splash.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/vector-ducky-blur-1480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/vector-ducky-blur-1480.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Resources/vector-ducky-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Resources/vector-ducky-color.png -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Rubberduck.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Rubberduck.UI.csproj -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Services/Abstract/ITextMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Services/Abstract/ITextMarker.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Services/Abstract/IWebNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Services/Abstract/IWebNavigator.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Services/Abstract/TextMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Services/Abstract/TextMarker.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Services/Abstract/TextMarkerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Services/Abstract/TextMarkerTypes.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Services/Abstract/WindowService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Services/Abstract/WindowService.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Services/FoldingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Services/FoldingExtensions.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Services/TextMarkerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Services/TextMarkerExtensions.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Services/TextMarkerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Services/TextMarkerService.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Services/UIServiceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Services/UIServiceHelper.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Services/WebNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Services/WebNavigator.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shared/About/AboutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shared/About/AboutService.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shared/About/AboutWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shared/About/AboutWindowViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shared/Message/IMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shared/Message/IMessageService.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shared/Message/MessageAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shared/Message/MessageAction.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shared/Message/MessageActionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shared/Message/MessageActionResult.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shared/Message/MessageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shared/Message/MessageModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shared/Message/MessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shared/Message/MessageService.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shared/Message/MessageWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shared/Message/MessageWindow.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shared/Message/MessageWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shared/Message/MessageWindow.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shared/Message/OokiiMessageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shared/Message/OokiiMessageService.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shared/Settings/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shared/Settings/SettingsWindow.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/About/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/About/AboutWindow.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/About/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/About/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/About/IAboutWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/About/IAboutWindowViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/BindableTextEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/BindableTextEditor.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/BusyIndicator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/BusyIndicator.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/BusyIndicator.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/BusyIndicator.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/Document/ITextMarkerToolTip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/Document/ITextMarkerToolTip.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/Document/TextEditorControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/Document/TextEditorControl.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/Document/TextMarkerToolTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/Document/TextMarkerToolTip.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/Document/TextMarkersMargin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/Document/TextMarkersMargin.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/DuckyBackgroundControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/DuckyBackgroundControl.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/DuckyBackgroundControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/DuckyBackgroundControl.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/FieldInfoLabel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/FieldInfoLabel.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/FieldInfoLabel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/FieldInfoLabel.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/FlatButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/FlatButton.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/FlatButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/FlatButton.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/FlatToggleButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/FlatToggleButton.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/FlatToggleButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/FlatToggleButton.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/IShellChildWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/IShellChildWindow.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/IShellWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/IShellWindowViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/IToolPanelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/IToolPanelViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/MenuBarControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/MenuBarControl.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/MenuBarControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/MenuBarControl.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/SearchBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/SearchBox.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/SearchBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/SearchBox.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/ShellChildToolWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/ShellChildToolWindow.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/ShellChildToolWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/ShellChildToolWindow.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/ShellChildWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/ShellChildWindow.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/ShellChildWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/ShellChildWindow.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/ShellResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/ShellResources.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/ShellWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/ShellWindow.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/ShellWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/ShellWindow.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/Splash/ISplashViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/Splash/ISplashViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/Splash/SplashWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/Splash/SplashWindow.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/Splash/SplashWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/Splash/SplashWindow.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/StatusBar/StatusBarControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/StatusBar/StatusBarControl.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/ThunderFrame.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/ThunderFrame.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Shell/ThunderFrame.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Shell/ThunderFrame.xaml.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Styles/CheckBoxTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Styles/CheckBoxTemplate.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Styles/ComboBoxTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Styles/ComboBoxTemplate.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Styles/DefaultStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Styles/DefaultStyle.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Styles/Icons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Styles/Icons.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Styles/ScrollBarTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Styles/ScrollBarTemplate.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Styles/SectionExpander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Styles/SectionExpander.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Styles/Templates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Styles/Templates.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Themes/AbyssTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Themes/AbyssTheme.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Themes/BlueTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Themes/BlueTheme.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Themes/DarkTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Themes/DarkTheme.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Themes/LightTheme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Themes/LightTheme.xaml -------------------------------------------------------------------------------- /Client/Rubberduck.UI/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/ViewModelBase.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Windows/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Windows/DialogService.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Windows/DialogWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Windows/DialogWindowViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Windows/IDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Windows/IDialogService.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Windows/IDialogWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Windows/IDialogWindowViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Windows/IDragablzWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Windows/IDragablzWindowViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Windows/IToolWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Windows/IToolWindowViewModel.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Windows/IWindowFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Windows/IWindowFactory.cs -------------------------------------------------------------------------------- /Client/Rubberduck.UI/Windows/WindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Client/Rubberduck.UI/Windows/WindowViewModel.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/README.md -------------------------------------------------------------------------------- /Register.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Register.bat -------------------------------------------------------------------------------- /RegisterAddIn.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/RegisterAddIn.reg -------------------------------------------------------------------------------- /Rubberduck3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Rubberduck3.sln -------------------------------------------------------------------------------- /Server/Rubberduck.CodeAnalysis.Legacy/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.CodeAnalysis.Legacy/app.config -------------------------------------------------------------------------------- /Server/Rubberduck.CodeAnalysis.Legacy/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.CodeAnalysis.Legacy/packages.config -------------------------------------------------------------------------------- /Server/Rubberduck.LanguageServer/Ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.LanguageServer/Ducky.ico -------------------------------------------------------------------------------- /Server/Rubberduck.LanguageServer/LanguageServerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.LanguageServer/LanguageServerState.cs -------------------------------------------------------------------------------- /Server/Rubberduck.LanguageServer/NLog-server.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.LanguageServer/NLog-server.config -------------------------------------------------------------------------------- /Server/Rubberduck.LanguageServer/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.LanguageServer/NLog.xsd -------------------------------------------------------------------------------- /Server/Rubberduck.LanguageServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.LanguageServer/Program.cs -------------------------------------------------------------------------------- /Server/Rubberduck.LanguageServer/ServerApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.LanguageServer/ServerApp.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Abstract/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Abstract/Expression.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Abstract/IExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Abstract/IExpression.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Abstract/IModuleParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Abstract/IModuleParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Abstract/IParseRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Abstract/IParseRunner.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Abstract/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Abstract/IParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Abstract/IValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Abstract/IValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Abstract/ModuleState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Abstract/ModuleState.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Abstract/ParserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Abstract/ParserState.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Expressions/BoolValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Expressions/BoolValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Expressions/ByteValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Expressions/ByteValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Expressions/DateValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Expressions/DateValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Expressions/EmptyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Expressions/EmptyValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Expressions/VBALibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Expressions/VBALibrary.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Expressions/ValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Expressions/ValueType.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/ITextDocumentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/ITextDocumentProvider.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/LogicalLineStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/LogicalLineStore.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Model/BlockFoldingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Model/BlockFoldingInfo.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Model/CodeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Model/CodeKind.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Model/MemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Model/MemberInfo.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Model/NamedOffsetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Model/NamedOffsetInfo.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Model/ParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Model/ParameterInfo.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Model/Tokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Model/Tokens.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Model/TypedMemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Model/TypedMemberInfo.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/Model/ValuedMemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/Model/ValuedMemberInfo.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/ParserMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/ParserMode.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/QualifiedContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/QualifiedContext.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/app.config -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing.Legacy/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing.Legacy/packages.config -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/Expression.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/IExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/IExpression.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/IModuleParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/IModuleParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/IParseCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/IParseCoordinator.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/IParseRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/IParseRunner.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/IParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/IParsingStageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/IParsingStageService.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/ITokenStreamParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/ITokenStreamParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/IValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/IValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/ModuleState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/ModuleState.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/ParserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/ParserState.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Abstract/ParserStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Abstract/ParserStateManager.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Annotations/AnnotationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Annotations/AnnotationBase.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Annotations/Concrete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Annotations/Concrete/README.md -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/BoolValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/BoolValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/ByteValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/ByteValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/ConcatExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/ConcatExpression.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/DateValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/DateValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/DecimalValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/DecimalValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/EmptyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/EmptyValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/IsExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/IsExpression.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/LikeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/LikeExpression.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/ModExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/ModExpression.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/NameExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/NameExpression.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/PowExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/PowExpression.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/StringValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/StringValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/SymbolTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/SymbolTable.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/TokensValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/TokensValue.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/VBADateConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/VBADateConstants.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/VBALibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/VBALibrary.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Expressions/ValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Expressions/ValueType.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Extensions/TokenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Extensions/TokenExtensions.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/ITextDocumentProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/ITextDocumentProvider.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Listeners/CommentListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Listeners/CommentListener.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/LogicalLineStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/LogicalLineStore.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Model/CodeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Model/CodeKind.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Model/ComReflection/ComAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Model/ComReflection/ComAlias.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Model/ComReflection/ComBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Model/ComReflection/ComBase.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Model/ComReflection/ComField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Model/ComReflection/ComField.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Model/ComReflection/ComMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Model/ComReflection/ComMember.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Model/ComReflection/ComModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Model/ComReflection/ComModule.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Model/ComReflection/ComStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Model/ComReflection/ComStruct.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Model/ComReflection/ComType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Model/ComReflection/ComType.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Model/ModuleParseResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Model/ModuleParseResults.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Model/Symbols/CommentNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Model/Symbols/CommentNode.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/ParserMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/ParserMode.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/Grammar/VBABaseLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/Grammar/VBABaseLexer.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/Grammar/VBABaseParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/Grammar/VBABaseParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/Grammar/VBADate.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/Grammar/VBADate.g4 -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/Grammar/VBALexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/Grammar/VBALexer.g4 -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/Grammar/VBALike.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/Grammar/VBALike.g4 -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/Grammar/VBAParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/Grammar/VBAParser.g4 -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/ModuleParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/ModuleParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/VBACodeStringParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/VBACodeStringParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/VBADateLiteralParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/VBADateLiteralParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/VBAExpressionParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/VBAExpressionParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/VBALikePatternParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/VBALikePatternParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/VBAPreprocessorParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/VBAPreprocessorParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/VBATokenStreamParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/VBATokenStreamParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Parsers/VbeModuleParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Parsers/VbeModuleParser.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/PreProcessing/VBAPreprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/PreProcessing/VBAPreprocessor.cs -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/Rubberduck.Parsing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/Rubberduck.Parsing.csproj -------------------------------------------------------------------------------- /Server/Rubberduck.Parsing/_v3/Pipeline/DocumentPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.Parsing/_v3/Pipeline/DocumentPipeline.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/AssemblyExtensions.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/Extensions.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/FolderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/FolderExtensions.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/ILanguageClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/ILanguageClientService.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/IServerStateWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/IServerStateWriter.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/ITelemetryTransmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/ITelemetryTransmitter.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/Model/Database/Local.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/Model/Database/Local.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/Model/Database/Member.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/Model/Database/Member.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/Model/Database/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/Model/Database/Module.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/Model/Database/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/Model/Database/Project.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/RubberduckClientApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/RubberduckClientApp.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/RubberduckServerApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/RubberduckServerApp.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/ServerArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/ServerArgs.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/ServerSplash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/ServerSplash.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/ServerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/ServerState.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/WorkDoneProgressParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/WorkDoneProgressParams.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/WorkspaceRootResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/WorkspaceRootResolver.cs -------------------------------------------------------------------------------- /Server/Rubberduck.ServerPlatform/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.ServerPlatform/packages.config -------------------------------------------------------------------------------- /Server/Rubberduck.TelemetryServer/Ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.TelemetryServer/Ducky.ico -------------------------------------------------------------------------------- /Server/Rubberduck.TelemetryServer/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.TelemetryServer/NLog.xsd -------------------------------------------------------------------------------- /Server/Rubberduck.TelemetryServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.TelemetryServer/Program.cs -------------------------------------------------------------------------------- /Server/Rubberduck.TelemetryServer/ServerApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.TelemetryServer/ServerApp.cs -------------------------------------------------------------------------------- /Server/Rubberduck.TelemetryServer/TelemetryServerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.TelemetryServer/TelemetryServerState.cs -------------------------------------------------------------------------------- /Server/Rubberduck.TelemetryServer/TelemetryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.TelemetryServer/TelemetryService.cs -------------------------------------------------------------------------------- /Server/Rubberduck.TelemetryServer/TelemetryTransmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.TelemetryServer/TelemetryTransmitter.cs -------------------------------------------------------------------------------- /Server/Rubberduck.UpdateServer/Ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.UpdateServer/Ducky.ico -------------------------------------------------------------------------------- /Server/Rubberduck.UpdateServer/NLog-update-server.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.UpdateServer/NLog-update-server.config -------------------------------------------------------------------------------- /Server/Rubberduck.UpdateServer/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.UpdateServer/NLog.xsd -------------------------------------------------------------------------------- /Server/Rubberduck.UpdateServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.UpdateServer/Program.cs -------------------------------------------------------------------------------- /Server/Rubberduck.UpdateServer/ServerApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.UpdateServer/ServerApp.cs -------------------------------------------------------------------------------- /Server/Rubberduck.UpdateServer/UpdateServerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.UpdateServer/UpdateServerState.cs -------------------------------------------------------------------------------- /Server/Rubberduck.UpdateServer/VersionCheckService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Server/Rubberduck.UpdateServer/VersionCheckService.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Common/IExportable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Common/IExportable.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Common/IOperatingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Common/IOperatingSystem.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Common/TimedAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Common/TimedAction.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Common/WindowsVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Common/WindowsVersion.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Extensions/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Extensions/UriExtensions.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Extensions/WorkspaceUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Extensions/WorkspaceUri.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/Accessibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/Accessibility.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/DeclarationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/DeclarationType.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/DocumentOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/DocumentOffset.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/MemberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/MemberType.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/ModuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/ModuleType.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/ParameterModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/ParameterModifier.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/SyntaxErrorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/SyntaxErrorInfo.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/Tokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/Tokens.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/Workspace/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/Workspace/File.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/Workspace/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/Workspace/Folder.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/Workspace/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/Workspace/Module.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/Workspace/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/Workspace/Project.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Model/Workspace/Reference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Model/Workspace/Reference.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/README.md: -------------------------------------------------------------------------------- 1 | # Rubberduck.InternalApi 2 | -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Services/IWorkspaceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Services/IWorkspaceState.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Services/ServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Services/ServiceBase.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Settings/ISettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Settings/ISettingsService.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Settings/MessageMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Settings/MessageMode.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/Settings/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/Settings/SettingsService.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/WebApi/ApiClientBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/WebApi/ApiClientBase.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/WebApi/ApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/WebApi/ApiException.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/WebApi/IPublicApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/WebApi/IPublicApiClient.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/WebApi/Model/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/WebApi/Model/Entity.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/WebApi/Model/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/WebApi/Model/Example.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/WebApi/Model/Feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/WebApi/Model/Feature.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/WebApi/Model/FeatureItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/WebApi/Model/FeatureItem.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/WebApi/Model/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/WebApi/Model/IEntity.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/WebApi/Model/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/WebApi/Model/Tag.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/WebApi/Model/TagAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/WebApi/Model/TagAsset.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/WebApi/PublicApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/WebApi/PublicApiClient.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/app.config -------------------------------------------------------------------------------- /Shared/Rubberduck.InternalApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.InternalApi/appsettings.json -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/About/AboutUI.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/About/AboutUI.Designer.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/About/AboutUI.cs.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/About/AboutUI.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/About/AboutUI.cs.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/About/AboutUI.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/About/AboutUI.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/About/AboutUI.de.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/About/AboutUI.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/About/AboutUI.es.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/About/AboutUI.fr.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/About/AboutUI.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/About/AboutUI.fr.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/About/AboutUI.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/About/AboutUI.it.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/About/AboutUI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/About/AboutUI.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/ApplicationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/ApplicationConstants.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Ducky.ico -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/AddClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/AddClass.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/AddEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/AddEvent.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/AddForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/AddForm.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/AddMethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/AddMethod.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/AddModule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/AddModule.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/Document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/Document.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/GroupBy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/GroupBy.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/MdiForm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/MdiForm.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/NewEvent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/NewEvent.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/Options.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/Play.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/Recursion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/Recursion.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/Refresh.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/Services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/Services.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/Severity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/Severity.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/PNG/Task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/PNG/Task.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/attribution.txt -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/cc_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/cc_license.txt -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Custom/mit_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Custom/mit_license.txt -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Ducky.ico -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/Funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/Funnel.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/arrow-090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/arrow-090.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/arrow-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/arrow-180.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/arrow-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/arrow-270.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/arrow-repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/arrow-repeat.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/arrow-repeat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/arrow-repeat1.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/arrow-split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/arrow-split.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/arrow-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/arrow-step.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/arrow.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/arrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/arrow1.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/balloon_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/balloon_mask.bmp -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/balloon_smiley.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/balloon_smiley.bmp -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/block.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/circle_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/circle_mask.bmp -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/clock-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/clock-network.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/clock-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/clock-select.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/clock.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/collapse-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/collapse-all.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/control-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/control-pause.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/control-power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/control-power.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/control.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/cross-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/cross-button.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/cross-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/cross-circle.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/cross-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/cross-script.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/disk.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/document--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/document--plus.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/document-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/document-block.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/document-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/document-code.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/document-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/document-copy.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/document-excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/document-excel.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/document-globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/document-globe.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/document-stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/document-stand.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/document-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/document-text.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/document-word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/document-word.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/drive-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/drive-download.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/drive-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/drive-network.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/drive-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/drive-upload.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/edit-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/edit-size.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/exclamation.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/expand-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/expand-all.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/flask--arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/flask--arrow.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/flask--pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/flask--pencil.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/flask--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/flask--plus.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/flask-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/flask-empty.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/flask-question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/flask-question.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/flask-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/flask-tag.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/flask-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/flask-undo.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/flask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/flask.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/flask_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/flask_mask.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/folder--pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/folder--pencil.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/folder--plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/folder--plus.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/folder-open.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/folder-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/folder-rename.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/folder.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/gear.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/git.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/hourglass.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/icon-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/icon-github.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/information.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/init-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/init-repo.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/lock-pinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/lock-pinned.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/lock.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/minus-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/minus-circle.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/minus-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/minus-white.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/navigation-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/navigation-180.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/navigation.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/pencil-ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/pencil-ruler.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/pinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/pinned.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/plus-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/plus-circle.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/plus-circle1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/plus-circle1.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/printer.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/question-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/question-white.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/skull-mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/skull-mad.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/socket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/socket.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/status-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/status-offline.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/tag-label-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/tag-label-gray.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/terminal.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/tick-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/tick-circle.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/tick.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/todo-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/todo-completed.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/Fugue/ui-tab-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/Fugue/ui-tab-content.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/RubberduckIcons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/RubberduckIcons.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/black-vector-ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/black-vector-ducky.ico -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/white-vector-ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/white-vector-ducky.ico -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Icons/yellow-vector-ducky.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Icons/yellow-vector-ducky.ico -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/InspectionInfo.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/InspectionInfo.fr.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/InspectionNames.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/InspectionNames.fr.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/InspectionResults.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/InspectionResults.fr.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/InspectionsUI.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/InspectionsUI.fr.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/InspectionsUI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Inspections/InspectionsUI.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/QuickFixes.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Inspections/QuickFixes.cs.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/QuickFixes.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Inspections/QuickFixes.de.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/QuickFixes.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Inspections/QuickFixes.es.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/QuickFixes.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Inspections/QuickFixes.fr.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/QuickFixes.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Inspections/QuickFixes.it.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Inspections/QuickFixes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Inspections/QuickFixes.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Locales.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Locales.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/MemberTypeIcons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/MemberTypeIcons.Designer.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/MemberTypeIcons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/MemberTypeIcons.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Menus/RubberduckMenus.cs.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Menus/RubberduckMenus.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Menus/RubberduckMenus.cs.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Menus/RubberduckMenus.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Menus/RubberduckMenus.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Menus/RubberduckMenus.de.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Menus/RubberduckMenus.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Menus/RubberduckMenus.es.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Menus/RubberduckMenus.fr.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Menus/RubberduckMenus.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Menus/RubberduckMenus.fr.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Menus/RubberduckMenus.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Menus/RubberduckMenus.it.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Menus/RubberduckMenus.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Menus/RubberduckMenus.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Paintdotnet/Splash320x360.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Paintdotnet/Splash320x360.pdn -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Paintdotnet/faint-ducky.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Paintdotnet/faint-ducky.pdn -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Resources/file-regular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Resources/file-regular.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Resources/xmark-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Resources/xmark-solid.png -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/Rubberduck.Resources.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/Rubberduck.Resources.csproj -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/RubberduckUI.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/RubberduckUI.Designer.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/RubberduckUI.cs.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/RubberduckUI.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/RubberduckUI.cs.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/RubberduckUI.de.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/RubberduckUI.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/RubberduckUI.de.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/RubberduckUI.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/RubberduckUI.es.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/RubberduckUI.fr.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/RubberduckUI.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/RubberduckUI.fr.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/RubberduckUI.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/RubberduckUI.it.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/RubberduckUI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/RubberduckUI.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/v3/Icons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/v3/Icons.Designer.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/v3/Icons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/v3/Icons.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/v3/LogLevelIcons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/v3/LogLevelIcons.Designer.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/v3/LogLevelIcons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/v3/LogLevelIcons.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/v3/RubberduckMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/v3/RubberduckMessages.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/v3/RubberduckUICommands.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/v3/RubberduckUICommands.resx -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/v3/SettingsUI.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/v3/SettingsUI.Designer.cs -------------------------------------------------------------------------------- /Shared/Rubberduck.Resources/v3/SettingsUI.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Shared/Rubberduck.Resources/v3/SettingsUI.resx -------------------------------------------------------------------------------- /Switch-RDVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Switch-RDVersion.ps1 -------------------------------------------------------------------------------- /Templates/Excel Project/.rdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Templates/Excel Project/.rdproj -------------------------------------------------------------------------------- /Templates/Excel Project/.template/Host/Sheet1.doccls: -------------------------------------------------------------------------------- 1 | Option Explicit -------------------------------------------------------------------------------- /Templates/Excel Project/.template/Host/ThisWorkbook.doccls: -------------------------------------------------------------------------------- 1 | Option Explicit -------------------------------------------------------------------------------- /Templates/Excel Project/.template/Module1.bas: -------------------------------------------------------------------------------- 1 | Option Explicit -------------------------------------------------------------------------------- /Templates/Excel Project/.template/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Templates/MVP Project/.rdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Templates/MVP Project/.rdproj -------------------------------------------------------------------------------- /Templates/MVP Project/.template/Abstract/ICancellable.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Templates/MVP Project/.template/Abstract/ICancellable.cls -------------------------------------------------------------------------------- /Templates/MVP Project/.template/Abstract/IView.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Templates/MVP Project/.template/Abstract/IView.cls -------------------------------------------------------------------------------- /Templates/MVP Project/.template/Feature/FeatureModel.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Templates/MVP Project/.template/Feature/FeatureModel.cls -------------------------------------------------------------------------------- /Templates/MVP Project/.template/Feature/FeatureView.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Templates/MVP Project/.template/Feature/FeatureView.frm -------------------------------------------------------------------------------- /Templates/MVP Project/.template/Macros.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Templates/MVP Project/.template/Macros.bas -------------------------------------------------------------------------------- /Templates/MVP Project/.template/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Templates/MVP Project/.template/Services/SomeService.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Templates/MVP Project/.template/Services/SomeService.cls -------------------------------------------------------------------------------- /Templates/Welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Templates/Welcome.md -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/Rubberduck.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/Rubberduck.Tests.csproj -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/ServiceBaseTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/ServiceBaseTest.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/TestLogger.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/VBExecutionContextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/VBExecutionContextBuilder.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/VBTypes/AdditionOpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/VBTypes/AdditionOpTests.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/VBTypes/CompareAndOpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/VBTypes/CompareAndOpTests.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/VBTypes/DivisionOpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/VBTypes/DivisionOpTests.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/VBTypes/MultiplicationOpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/VBTypes/MultiplicationOpTests.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/VBTypes/NegationOperatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/VBTypes/NegationOperatorTests.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/VBTypes/NewOperatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/VBTypes/NewOperatorTests.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/VBTypes/OperatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/VBTypes/OperatorTests.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/VBTypes/SubtractionOpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/VBTypes/SubtractionOpTests.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/VBTypes/UnaryNotOpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/VBTypes/UnaryNotOpTests.cs -------------------------------------------------------------------------------- /Tests/Rubberduck.Tests/VBTypes/UnaryOperatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/Tests/Rubberduck.Tests/VBTypes/UnaryOperatorTests.cs -------------------------------------------------------------------------------- /libs/Autodesk.AutoCAD.Interop.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Autodesk.AutoCAD.Interop.Common.dll -------------------------------------------------------------------------------- /libs/Autodesk.AutoCAD.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Autodesk.AutoCAD.Interop.dll -------------------------------------------------------------------------------- /libs/Corel.GraphicsSuite.Interop.CorelDRAW.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Corel.GraphicsSuite.Interop.CorelDRAW.dll -------------------------------------------------------------------------------- /libs/Infralution.Localization.Wpf.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Infralution.Localization.Wpf.XML -------------------------------------------------------------------------------- /libs/Infralution.Localization.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Infralution.Localization.Wpf.dll -------------------------------------------------------------------------------- /libs/Interop.SldWorks.Extensibility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Interop.SldWorks.Extensibility.dll -------------------------------------------------------------------------------- /libs/Interop.SldWorks.Types.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Interop.SldWorks.Types.dll -------------------------------------------------------------------------------- /libs/Interop.VisioViewer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Interop.VisioViewer.dll -------------------------------------------------------------------------------- /libs/Microsoft.Office.Interop.Access.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Microsoft.Office.Interop.Access.dll -------------------------------------------------------------------------------- /libs/Microsoft.Office.Interop.Excel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Microsoft.Office.Interop.Excel.dll -------------------------------------------------------------------------------- /libs/Microsoft.Office.Interop.MSProject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Microsoft.Office.Interop.MSProject.dll -------------------------------------------------------------------------------- /libs/Microsoft.Office.Interop.Outlook.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Microsoft.Office.Interop.Outlook.dll -------------------------------------------------------------------------------- /libs/Microsoft.Office.Interop.PowerPoint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Microsoft.Office.Interop.PowerPoint.dll -------------------------------------------------------------------------------- /libs/Microsoft.Office.Interop.Publisher.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Microsoft.Office.Interop.Publisher.dll -------------------------------------------------------------------------------- /libs/Microsoft.Office.Interop.Visio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Microsoft.Office.Interop.Visio.dll -------------------------------------------------------------------------------- /libs/Microsoft.Office.Interop.Word.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Microsoft.Office.Interop.Word.dll -------------------------------------------------------------------------------- /libs/Microsoft.Vbe.Interop.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Microsoft.Vbe.Interop.Forms.dll -------------------------------------------------------------------------------- /libs/Microsoft.Vbe.Interop.VB6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Microsoft.Vbe.Interop.VB6.dll -------------------------------------------------------------------------------- /libs/Microsoft.Vbe.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Microsoft.Vbe.Interop.dll -------------------------------------------------------------------------------- /libs/Office.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Office.dll -------------------------------------------------------------------------------- /libs/Office.v8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/Office.v8.dll -------------------------------------------------------------------------------- /libs/de/Infralution.Localization.Wpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/de/Infralution.Localization.Wpf.resources.dll -------------------------------------------------------------------------------- /libs/extensibility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/extensibility.dll -------------------------------------------------------------------------------- /libs/fr/Infralution.Localization.Wpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/fr/Infralution.Localization.Wpf.resources.dll -------------------------------------------------------------------------------- /libs/it/Infralution.Localization.Wpf.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rubberduck-vba/Rubberduck3/HEAD/libs/it/Infralution.Localization.Wpf.resources.dll --------------------------------------------------------------------------------