├── .gitignore ├── README.md ├── bin ├── ServerRegistrationManager.exe ├── SharpShell.dll ├── build.cmd ├── publish.cmd ├── shell-x.exe ├── shell-x.nuspec ├── tools │ ├── chocolateyInstall.ps1 │ ├── chocolateyInstall.ps1.template │ └── chocolateyUninstall.ps1 └── update_package.cs ├── images ├── loo.ico ├── send_to.png ├── send_to_files.png ├── shell_x_files.png ├── shell_x_logo.48.png ├── shell_x_logo.png └── shell_x_menu.png ├── shell-x.sln └── shell-x ├── GenericExtensions.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── Regasm.cs ├── Resources.Designer.cs ├── Resources.resx ├── TestForm.Designer.cs ├── TestForm.cs ├── TestForm.resx ├── app.manifest ├── logo.ico ├── logo.png ├── packages.config ├── shell-x.csproj ├── shell-x.ruleset ├── sign_key.snk └── tools ├── ServerManager.exe ├── ServerRegistrationManager.exe ├── SharpShell.dll └── SharpShell.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/README.md -------------------------------------------------------------------------------- /bin/ServerRegistrationManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/bin/ServerRegistrationManager.exe -------------------------------------------------------------------------------- /bin/SharpShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/bin/SharpShell.dll -------------------------------------------------------------------------------- /bin/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/bin/build.cmd -------------------------------------------------------------------------------- /bin/publish.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/bin/publish.cmd -------------------------------------------------------------------------------- /bin/shell-x.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/bin/shell-x.exe -------------------------------------------------------------------------------- /bin/shell-x.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/bin/shell-x.nuspec -------------------------------------------------------------------------------- /bin/tools/chocolateyInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/bin/tools/chocolateyInstall.ps1 -------------------------------------------------------------------------------- /bin/tools/chocolateyInstall.ps1.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/bin/tools/chocolateyInstall.ps1.template -------------------------------------------------------------------------------- /bin/tools/chocolateyUninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/bin/tools/chocolateyUninstall.ps1 -------------------------------------------------------------------------------- /bin/update_package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/bin/update_package.cs -------------------------------------------------------------------------------- /images/loo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/images/loo.ico -------------------------------------------------------------------------------- /images/send_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/images/send_to.png -------------------------------------------------------------------------------- /images/send_to_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/images/send_to_files.png -------------------------------------------------------------------------------- /images/shell_x_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/images/shell_x_files.png -------------------------------------------------------------------------------- /images/shell_x_logo.48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/images/shell_x_logo.48.png -------------------------------------------------------------------------------- /images/shell_x_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/images/shell_x_logo.png -------------------------------------------------------------------------------- /images/shell_x_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/images/shell_x_menu.png -------------------------------------------------------------------------------- /shell-x.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x.sln -------------------------------------------------------------------------------- /shell-x/GenericExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/GenericExtensions.cs -------------------------------------------------------------------------------- /shell-x/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/Program.cs -------------------------------------------------------------------------------- /shell-x/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /shell-x/Regasm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/Regasm.cs -------------------------------------------------------------------------------- /shell-x/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/Resources.Designer.cs -------------------------------------------------------------------------------- /shell-x/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/Resources.resx -------------------------------------------------------------------------------- /shell-x/TestForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/TestForm.Designer.cs -------------------------------------------------------------------------------- /shell-x/TestForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/TestForm.cs -------------------------------------------------------------------------------- /shell-x/TestForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/TestForm.resx -------------------------------------------------------------------------------- /shell-x/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/app.manifest -------------------------------------------------------------------------------- /shell-x/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/logo.ico -------------------------------------------------------------------------------- /shell-x/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/logo.png -------------------------------------------------------------------------------- /shell-x/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/packages.config -------------------------------------------------------------------------------- /shell-x/shell-x.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/shell-x.csproj -------------------------------------------------------------------------------- /shell-x/shell-x.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/shell-x.ruleset -------------------------------------------------------------------------------- /shell-x/sign_key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/sign_key.snk -------------------------------------------------------------------------------- /shell-x/tools/ServerManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/tools/ServerManager.exe -------------------------------------------------------------------------------- /shell-x/tools/ServerRegistrationManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/tools/ServerRegistrationManager.exe -------------------------------------------------------------------------------- /shell-x/tools/SharpShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/tools/SharpShell.dll -------------------------------------------------------------------------------- /shell-x/tools/SharpShell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oleg-shilo/shell-x/HEAD/shell-x/tools/SharpShell.xml --------------------------------------------------------------------------------