├── .gitattributes ├── .vs └── SharpExShell │ └── v16 │ └── .suo ├── LICENSE ├── README.md ├── SharpExShell.sln ├── SharpExShell ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SharpExShell.csproj ├── bin │ └── x64 │ │ └── Release │ │ ├── NDesk.Options.dll │ │ ├── SharpExShell.exe │ │ ├── SharpExShell.exe.config │ │ └── SharpExShell.pdb ├── obj │ ├── Debug │ │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── SharpExShell.csproj.AssemblyReference.cache │ │ ├── SharpExShell.csproj.CoreCompileInputs.cache │ │ └── SharpExShell.csproj.FileListAbsolute.txt │ ├── Release │ │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ └── x64 │ │ └── Release │ │ ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── SharpExShell.csproj.CopyComplete │ │ ├── SharpExShell.csproj.CoreCompileInputs.cache │ │ ├── SharpExShell.csproj.FileListAbsolute.txt │ │ ├── SharpExShell.exe │ │ └── SharpExShell.pdb └── packages.config └── packages └── NDesk.Options.0.2.1 ├── .signature.p7s ├── NDesk.Options.0.2.1.nupkg └── lib └── NDesk.Options.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vs/SharpExShell/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/.vs/SharpExShell/v16/.suo -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/README.md -------------------------------------------------------------------------------- /SharpExShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell.sln -------------------------------------------------------------------------------- /SharpExShell/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/App.config -------------------------------------------------------------------------------- /SharpExShell/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/Program.cs -------------------------------------------------------------------------------- /SharpExShell/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpExShell/SharpExShell.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/SharpExShell.csproj -------------------------------------------------------------------------------- /SharpExShell/bin/x64/Release/NDesk.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/bin/x64/Release/NDesk.Options.dll -------------------------------------------------------------------------------- /SharpExShell/bin/x64/Release/SharpExShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/bin/x64/Release/SharpExShell.exe -------------------------------------------------------------------------------- /SharpExShell/bin/x64/Release/SharpExShell.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/bin/x64/Release/SharpExShell.exe.config -------------------------------------------------------------------------------- /SharpExShell/bin/x64/Release/SharpExShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/bin/x64/Release/SharpExShell.pdb -------------------------------------------------------------------------------- /SharpExShell/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SharpExShell/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SharpExShell/obj/Debug/SharpExShell.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/obj/Debug/SharpExShell.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /SharpExShell/obj/Debug/SharpExShell.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 426058dfa88f2b50fe267a9662b0d38e72d2db76 2 | -------------------------------------------------------------------------------- /SharpExShell/obj/Debug/SharpExShell.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/obj/Debug/SharpExShell.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SharpExShell/obj/Release/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/obj/Release/.NETFramework,Version=v4.5.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SharpExShell/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SharpExShell/obj/x64/Release/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/obj/x64/Release/.NETFramework,Version=v4.5.AssemblyAttributes.cs -------------------------------------------------------------------------------- /SharpExShell/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/obj/x64/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SharpExShell/obj/x64/Release/SharpExShell.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SharpExShell/obj/x64/Release/SharpExShell.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0b2e6b758e286d8ee6a213329ae032de3f4ce6b3 2 | -------------------------------------------------------------------------------- /SharpExShell/obj/x64/Release/SharpExShell.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/obj/x64/Release/SharpExShell.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SharpExShell/obj/x64/Release/SharpExShell.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/obj/x64/Release/SharpExShell.exe -------------------------------------------------------------------------------- /SharpExShell/obj/x64/Release/SharpExShell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/obj/x64/Release/SharpExShell.pdb -------------------------------------------------------------------------------- /SharpExShell/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/SharpExShell/packages.config -------------------------------------------------------------------------------- /packages/NDesk.Options.0.2.1/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/packages/NDesk.Options.0.2.1/.signature.p7s -------------------------------------------------------------------------------- /packages/NDesk.Options.0.2.1/NDesk.Options.0.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/packages/NDesk.Options.0.2.1/NDesk.Options.0.2.1.nupkg -------------------------------------------------------------------------------- /packages/NDesk.Options.0.2.1/lib/NDesk.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayhatkiller/SharpExShell/HEAD/packages/NDesk.Options.0.2.1/lib/NDesk.Options.dll --------------------------------------------------------------------------------