├── .gitignore ├── README.md └── shim ├── CommandExecutor.cs ├── LICENSE ├── README.md ├── ShimProgram.cs └── app.manifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/shimgen/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/shimgen/HEAD/README.md -------------------------------------------------------------------------------- /shim/CommandExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/shimgen/HEAD/shim/CommandExecutor.cs -------------------------------------------------------------------------------- /shim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/shimgen/HEAD/shim/LICENSE -------------------------------------------------------------------------------- /shim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/shimgen/HEAD/shim/README.md -------------------------------------------------------------------------------- /shim/ShimProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/shimgen/HEAD/shim/ShimProgram.cs -------------------------------------------------------------------------------- /shim/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chocolatey/shimgen/HEAD/shim/app.manifest --------------------------------------------------------------------------------