├── .gitattributes ├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CloseAllTabs.sln ├── LICENSE ├── README.md ├── appveyor.yml ├── art ├── before-after.png ├── focus-solution-explorer.png └── options.png └── src ├── CloseAllTabs.csproj ├── Commands ├── CloseOpenDocuments.cs ├── CollapseFolders.cs ├── DeleteBase.cs ├── DeleteBinFolder.cs ├── DeleteDotVsFolder.cs ├── DeleteIISExpressLogsFolder.cs ├── DeleteIISExpressTraceLogFilesFolder.cs ├── DeleteTestResultsFolder.cs └── SolutionExplorerFocus.cs ├── Options.cs ├── Properties └── AssemblyInfo.cs ├── Resources └── Icon.png ├── VSPackage.cs ├── source.extension.cs └── source.extension.vsixmanifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CloseAllTabs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/CloseAllTabs.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/appveyor.yml -------------------------------------------------------------------------------- /art/before-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/art/before-after.png -------------------------------------------------------------------------------- /art/focus-solution-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/art/focus-solution-explorer.png -------------------------------------------------------------------------------- /art/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/art/options.png -------------------------------------------------------------------------------- /src/CloseAllTabs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/CloseAllTabs.csproj -------------------------------------------------------------------------------- /src/Commands/CloseOpenDocuments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Commands/CloseOpenDocuments.cs -------------------------------------------------------------------------------- /src/Commands/CollapseFolders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Commands/CollapseFolders.cs -------------------------------------------------------------------------------- /src/Commands/DeleteBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Commands/DeleteBase.cs -------------------------------------------------------------------------------- /src/Commands/DeleteBinFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Commands/DeleteBinFolder.cs -------------------------------------------------------------------------------- /src/Commands/DeleteDotVsFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Commands/DeleteDotVsFolder.cs -------------------------------------------------------------------------------- /src/Commands/DeleteIISExpressLogsFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Commands/DeleteIISExpressLogsFolder.cs -------------------------------------------------------------------------------- /src/Commands/DeleteIISExpressTraceLogFilesFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Commands/DeleteIISExpressTraceLogFilesFolder.cs -------------------------------------------------------------------------------- /src/Commands/DeleteTestResultsFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Commands/DeleteTestResultsFolder.cs -------------------------------------------------------------------------------- /src/Commands/SolutionExplorerFocus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Commands/SolutionExplorerFocus.cs -------------------------------------------------------------------------------- /src/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Options.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/Resources/Icon.png -------------------------------------------------------------------------------- /src/VSPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/VSPackage.cs -------------------------------------------------------------------------------- /src/source.extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/source.extension.cs -------------------------------------------------------------------------------- /src/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madskristensen/CloseAllTabs/HEAD/src/source.extension.vsixmanifest --------------------------------------------------------------------------------