├── .gitignore ├── Installer.cs ├── README.md ├── Root-VSIX.csproj ├── Root-VSIX.sln └── Shell.Interop ├── COM Types.cs └── Shell.Interop.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/Root-VSIX/HEAD/.gitignore -------------------------------------------------------------------------------- /Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/Root-VSIX/HEAD/Installer.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/Root-VSIX/HEAD/README.md -------------------------------------------------------------------------------- /Root-VSIX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/Root-VSIX/HEAD/Root-VSIX.csproj -------------------------------------------------------------------------------- /Root-VSIX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/Root-VSIX/HEAD/Root-VSIX.sln -------------------------------------------------------------------------------- /Shell.Interop/COM Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/Root-VSIX/HEAD/Shell.Interop/COM Types.cs -------------------------------------------------------------------------------- /Shell.Interop/Shell.Interop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SLaks/Root-VSIX/HEAD/Shell.Interop/Shell.Interop.csproj --------------------------------------------------------------------------------