├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── release-build.ps1 ├── shim.sln ├── src ├── shim.cs └── shim.csproj └── test ├── UnitTest.cs ├── fixtures └── test.shim └── test.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/README.md -------------------------------------------------------------------------------- /release-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/release-build.ps1 -------------------------------------------------------------------------------- /shim.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/shim.sln -------------------------------------------------------------------------------- /src/shim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/src/shim.cs -------------------------------------------------------------------------------- /src/shim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/src/shim.csproj -------------------------------------------------------------------------------- /test/UnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/test/UnitTest.cs -------------------------------------------------------------------------------- /test/fixtures/test.shim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/test/fixtures/test.shim -------------------------------------------------------------------------------- /test/test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScoopInstaller/Shim/HEAD/test/test.csproj --------------------------------------------------------------------------------