├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── VsctCompletion.sln ├── appveyor.yml ├── art ├── guidSHLMainMenu.png ├── guids-ids.gif ├── knownmonikers.gif └── raw menus │ ├── Analyze.png │ ├── Build.png │ ├── CodeWindow.png │ ├── Debug.png │ ├── Edit.png │ ├── Extensions.png │ ├── File.png │ ├── FolderNode.png │ ├── Git.png │ ├── Help.png │ ├── ItemNode.png │ ├── MainMenuToolbar.png │ ├── Project.png │ ├── ProjectNode.png │ ├── SolutionFolder.png │ ├── SolutionNode.png │ ├── Test.png │ ├── Tools.png │ ├── View.png │ ├── Window.png │ └── Xml.png └── src ├── VsctCompletion2019 ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Icon.png │ ├── VSGlobals.vsct │ └── menus │ │ ├── Analyze.png │ │ ├── Build.png │ │ ├── CodeWindow.png │ │ ├── Debug.png │ │ ├── Edit.png │ │ ├── Extensions.png │ │ ├── File.png │ │ ├── FolderNode.png │ │ ├── Git.png │ │ ├── Help.png │ │ ├── ItemNode.png │ │ ├── MainMenuToolbar.png │ │ ├── Project.png │ │ ├── ProjectNode.png │ │ ├── SolutionFolder.png │ │ ├── SolutionNode.AddGroup.png │ │ ├── SolutionNode.png │ │ ├── Test.png │ │ ├── Tools.png │ │ ├── View.png │ │ ├── Window.png │ │ └── Xml.png ├── VsctCompletion2019.csproj ├── source.extension.cs └── source.extension.vsixmanifest ├── VsctCompletion2022 ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Icon.png │ ├── VSGlobals.vsct │ └── menus │ │ ├── Analyze.png │ │ ├── Build.png │ │ ├── CodeWindow.png │ │ ├── Debug.png │ │ ├── Edit.png │ │ ├── Extensions.png │ │ ├── File.png │ │ ├── FolderNode.png │ │ ├── Git.png │ │ ├── Help.png │ │ ├── ItemNode.png │ │ ├── MainMenuToolbar.png │ │ ├── Project.png │ │ ├── ProjectNode.png │ │ ├── SolutionFolder.png │ │ ├── SolutionNode.AddGroup.png │ │ ├── SolutionNode.png │ │ ├── Test.png │ │ ├── Tools.png │ │ ├── View.png │ │ ├── Window.png │ │ └── Xml.png ├── VsctCompletion2022.csproj ├── source.extension.cs └── source.extension.vsixmanifest └── VsctCompletionShared ├── Completion ├── Providers │ ├── EditorProvider.cs │ ├── GuidSymbolIdProvider.cs │ ├── GuidSymbolProvider.cs │ ├── HrefProvider.cs │ ├── ICompletionProvider.cs │ ├── KnownIdList.cs │ └── KnownMonikersList.cs ├── VsctCompletionSource.cs ├── VsctCompletionSourceProvider.cs └── VsctParser.cs ├── ContentTypes └── VsctContentTypeDefinition.cs ├── ExtensionMethods.cs ├── GoToDifinition ├── VsctGoToDefinitionCommandHandler.cs └── VsctGoToDefinitionCreationListener.cs ├── QuickInfo ├── IdQuickInfoProvider.cs └── IdQuickInfoSource.cs ├── VsctCompletionShared.projitems └── VsctCompletionShared.shproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/README.md -------------------------------------------------------------------------------- /VsctCompletion.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/VsctCompletion.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/appveyor.yml -------------------------------------------------------------------------------- /art/guidSHLMainMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/guidSHLMainMenu.png -------------------------------------------------------------------------------- /art/guids-ids.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/guids-ids.gif -------------------------------------------------------------------------------- /art/knownmonikers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/knownmonikers.gif -------------------------------------------------------------------------------- /art/raw menus/Analyze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Analyze.png -------------------------------------------------------------------------------- /art/raw menus/Build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Build.png -------------------------------------------------------------------------------- /art/raw menus/CodeWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/CodeWindow.png -------------------------------------------------------------------------------- /art/raw menus/Debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Debug.png -------------------------------------------------------------------------------- /art/raw menus/Edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Edit.png -------------------------------------------------------------------------------- /art/raw menus/Extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Extensions.png -------------------------------------------------------------------------------- /art/raw menus/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/File.png -------------------------------------------------------------------------------- /art/raw menus/FolderNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/FolderNode.png -------------------------------------------------------------------------------- /art/raw menus/Git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Git.png -------------------------------------------------------------------------------- /art/raw menus/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Help.png -------------------------------------------------------------------------------- /art/raw menus/ItemNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/ItemNode.png -------------------------------------------------------------------------------- /art/raw menus/MainMenuToolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/MainMenuToolbar.png -------------------------------------------------------------------------------- /art/raw menus/Project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Project.png -------------------------------------------------------------------------------- /art/raw menus/ProjectNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/ProjectNode.png -------------------------------------------------------------------------------- /art/raw menus/SolutionFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/SolutionFolder.png -------------------------------------------------------------------------------- /art/raw menus/SolutionNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/SolutionNode.png -------------------------------------------------------------------------------- /art/raw menus/Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Test.png -------------------------------------------------------------------------------- /art/raw menus/Tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Tools.png -------------------------------------------------------------------------------- /art/raw menus/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/View.png -------------------------------------------------------------------------------- /art/raw menus/Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Window.png -------------------------------------------------------------------------------- /art/raw menus/Xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/art/raw menus/Xml.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/Icon.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/VSGlobals.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/VSGlobals.vsct -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Analyze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Analyze.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Build.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/CodeWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/CodeWindow.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Debug.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Edit.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Extensions.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/File.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/FolderNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/FolderNode.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Git.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Help.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/ItemNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/ItemNode.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/MainMenuToolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/MainMenuToolbar.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Project.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/ProjectNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/ProjectNode.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/SolutionFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/SolutionFolder.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/SolutionNode.AddGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/SolutionNode.AddGroup.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/SolutionNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/SolutionNode.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Test.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Tools.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/View.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Window.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/Resources/menus/Xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/Resources/menus/Xml.png -------------------------------------------------------------------------------- /src/VsctCompletion2019/VsctCompletion2019.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/VsctCompletion2019.csproj -------------------------------------------------------------------------------- /src/VsctCompletion2019/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/source.extension.cs -------------------------------------------------------------------------------- /src/VsctCompletion2019/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2019/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/VsctCompletion2022/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/Icon.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/VSGlobals.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/VSGlobals.vsct -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Analyze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Analyze.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Build.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/CodeWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/CodeWindow.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Debug.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Edit.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Extensions.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/File.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/FolderNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/FolderNode.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Git.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Help.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/ItemNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/ItemNode.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/MainMenuToolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/MainMenuToolbar.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Project.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/ProjectNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/ProjectNode.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/SolutionFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/SolutionFolder.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/SolutionNode.AddGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/SolutionNode.AddGroup.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/SolutionNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/SolutionNode.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Test.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Tools.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/View.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Window.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/Resources/menus/Xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/Resources/menus/Xml.png -------------------------------------------------------------------------------- /src/VsctCompletion2022/VsctCompletion2022.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/VsctCompletion2022.csproj -------------------------------------------------------------------------------- /src/VsctCompletion2022/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/source.extension.cs -------------------------------------------------------------------------------- /src/VsctCompletion2022/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletion2022/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/VsctCompletionShared/Completion/Providers/EditorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/Completion/Providers/EditorProvider.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/Completion/Providers/GuidSymbolIdProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/Completion/Providers/GuidSymbolIdProvider.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/Completion/Providers/GuidSymbolProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/Completion/Providers/GuidSymbolProvider.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/Completion/Providers/HrefProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/Completion/Providers/HrefProvider.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/Completion/Providers/ICompletionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/Completion/Providers/ICompletionProvider.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/Completion/Providers/KnownIdList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/Completion/Providers/KnownIdList.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/Completion/Providers/KnownMonikersList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/Completion/Providers/KnownMonikersList.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/Completion/VsctCompletionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/Completion/VsctCompletionSource.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/Completion/VsctCompletionSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/Completion/VsctCompletionSourceProvider.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/Completion/VsctParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/Completion/VsctParser.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/ContentTypes/VsctContentTypeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/ContentTypes/VsctContentTypeDefinition.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/ExtensionMethods.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/GoToDifinition/VsctGoToDefinitionCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/GoToDifinition/VsctGoToDefinitionCommandHandler.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/GoToDifinition/VsctGoToDefinitionCreationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/GoToDifinition/VsctGoToDefinitionCreationListener.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/QuickInfo/IdQuickInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/QuickInfo/IdQuickInfoProvider.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/QuickInfo/IdQuickInfoSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/QuickInfo/IdQuickInfoSource.cs -------------------------------------------------------------------------------- /src/VsctCompletionShared/VsctCompletionShared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/VsctCompletionShared.projitems -------------------------------------------------------------------------------- /src/VsctCompletionShared/VsctCompletionShared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/VsctIntellisense/HEAD/src/VsctCompletionShared/VsctCompletionShared.shproj --------------------------------------------------------------------------------