├── .gitignore ├── README.md ├── toast.sln └── toast ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── ShellHelpers.cs ├── bin └── Release │ ├── Microsoft.WindowsAPICodePack.Shell.dll │ ├── Microsoft.WindowsAPICodePack.Shell.pdb │ ├── Microsoft.WindowsAPICodePack.dll │ ├── Microsoft.WindowsAPICodePack.pdb │ ├── Windows.winmd │ ├── toast.exe │ ├── toast.exe.config │ ├── toast.pdb │ ├── toast.vshost.exe │ ├── toast.vshost.exe.config │ └── toast.vshost.exe.manifest └── toast.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/README.md -------------------------------------------------------------------------------- /toast.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast.sln -------------------------------------------------------------------------------- /toast/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/App.config -------------------------------------------------------------------------------- /toast/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/Program.cs -------------------------------------------------------------------------------- /toast/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /toast/ShellHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/ShellHelpers.cs -------------------------------------------------------------------------------- /toast/bin/Release/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/bin/Release/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /toast/bin/Release/Microsoft.WindowsAPICodePack.Shell.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/bin/Release/Microsoft.WindowsAPICodePack.Shell.pdb -------------------------------------------------------------------------------- /toast/bin/Release/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/bin/Release/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /toast/bin/Release/Microsoft.WindowsAPICodePack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/bin/Release/Microsoft.WindowsAPICodePack.pdb -------------------------------------------------------------------------------- /toast/bin/Release/Windows.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/bin/Release/Windows.winmd -------------------------------------------------------------------------------- /toast/bin/Release/toast.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/bin/Release/toast.exe -------------------------------------------------------------------------------- /toast/bin/Release/toast.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/bin/Release/toast.exe.config -------------------------------------------------------------------------------- /toast/bin/Release/toast.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/bin/Release/toast.pdb -------------------------------------------------------------------------------- /toast/bin/Release/toast.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/bin/Release/toast.vshost.exe -------------------------------------------------------------------------------- /toast/bin/Release/toast.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/bin/Release/toast.vshost.exe.config -------------------------------------------------------------------------------- /toast/bin/Release/toast.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/bin/Release/toast.vshost.exe.manifest -------------------------------------------------------------------------------- /toast/toast.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nels-o/toaster/HEAD/toast/toast.csproj --------------------------------------------------------------------------------