├── .github └── FUNDING.yml ├── .gitignore ├── Assets ├── Icon.ico ├── License.txt ├── Logo.png ├── Logo_128x.png ├── Preview2.png ├── Preview_200x.png ├── Screenshot - Large.png ├── Screenshot-ErrorList.png ├── Screenshot-ErrorList2.png ├── Screenshot.png ├── StackOverflow-16.png ├── StackOverflow.ico ├── Visual Studio Gallery.docx └── stackOverflow-16@2x.png ├── LICENSE ├── README.md ├── StackOverflowQuickLaunch.sln ├── StackOverflowQuickLaunch ├── Browser.cs ├── Guids.cs ├── License.txt ├── Properties │ └── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources │ ├── IconCommand.png │ ├── Logo_128x.png │ ├── Preview_200x.png │ └── StackOverflow.ico ├── StackOverflowQuickLaunch.csproj ├── StackOverflowQuickLaunchPackage.cs ├── StackOverflowQuickLaunchPackage.vsct ├── StackOverflowSearchErrorListCommand.cs ├── StackOverflowSearchItemResult.cs ├── StackOverflowSearchOptionPage.cs ├── StackOverflowSearchOptionPage.resx ├── StackOverflowSearchProvider.cs ├── StackOverflowSearchResult.cs ├── StackOverflowSearchTask.cs ├── StackOverflowSearchUserControl.Designer.cs ├── StackOverflowSearchUserControl.cs ├── StackOverflowSearchUserControl.resx ├── VSPackage.resx └── source.extension.vsixmanifest └── TestSerializer ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs └── TestSerializer.csproj /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/Icon.ico -------------------------------------------------------------------------------- /Assets/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/License.txt -------------------------------------------------------------------------------- /Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/Logo.png -------------------------------------------------------------------------------- /Assets/Logo_128x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/Logo_128x.png -------------------------------------------------------------------------------- /Assets/Preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/Preview2.png -------------------------------------------------------------------------------- /Assets/Preview_200x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/Preview_200x.png -------------------------------------------------------------------------------- /Assets/Screenshot - Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/Screenshot - Large.png -------------------------------------------------------------------------------- /Assets/Screenshot-ErrorList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/Screenshot-ErrorList.png -------------------------------------------------------------------------------- /Assets/Screenshot-ErrorList2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/Screenshot-ErrorList2.png -------------------------------------------------------------------------------- /Assets/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/Screenshot.png -------------------------------------------------------------------------------- /Assets/StackOverflow-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/StackOverflow-16.png -------------------------------------------------------------------------------- /Assets/StackOverflow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/StackOverflow.ico -------------------------------------------------------------------------------- /Assets/Visual Studio Gallery.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/Visual Studio Gallery.docx -------------------------------------------------------------------------------- /Assets/stackOverflow-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/Assets/stackOverflow-16@2x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/README.md -------------------------------------------------------------------------------- /StackOverflowQuickLaunch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch.sln -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/Browser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/Browser.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/Guids.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/License.txt -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/Resources.Designer.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/Resources.resx -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/Resources/IconCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/Resources/IconCommand.png -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/Resources/Logo_128x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/Resources/Logo_128x.png -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/Resources/Preview_200x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/Resources/Preview_200x.png -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/Resources/StackOverflow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/Resources/StackOverflow.ico -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowQuickLaunch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowQuickLaunch.csproj -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowQuickLaunchPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowQuickLaunchPackage.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowQuickLaunchPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowQuickLaunchPackage.vsct -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowSearchErrorListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowSearchErrorListCommand.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowSearchItemResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowSearchItemResult.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowSearchOptionPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowSearchOptionPage.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowSearchOptionPage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowSearchOptionPage.resx -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowSearchProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowSearchProvider.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowSearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowSearchResult.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowSearchTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowSearchTask.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowSearchUserControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowSearchUserControl.Designer.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowSearchUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowSearchUserControl.cs -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/StackOverflowSearchUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/StackOverflowSearchUserControl.resx -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/VSPackage.resx -------------------------------------------------------------------------------- /StackOverflowQuickLaunch/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/StackOverflowQuickLaunch/source.extension.vsixmanifest -------------------------------------------------------------------------------- /TestSerializer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/TestSerializer/App.config -------------------------------------------------------------------------------- /TestSerializer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/TestSerializer/Program.cs -------------------------------------------------------------------------------- /TestSerializer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/TestSerializer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestSerializer/TestSerializer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aberus/StackOverflowQuickLaunch/HEAD/TestSerializer/TestSerializer.csproj --------------------------------------------------------------------------------