├── .gitignore ├── README.md ├── screentogif.install ├── screentogif.install.nuspec └── tools │ └── chocolateyInstall.ps1 ├── screentogif.png ├── screentogif.portable ├── screentogif.portable.nuspec └── tools │ ├── chocolateyInstall.ps1 │ └── chocolateyUninstall.ps1 └── screentogif └── screentogif.nuspec /.gitignore: -------------------------------------------------------------------------------- 1 | *.nupkg 2 | /.vs 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickeManarin/ScreenToGif-Chocolatey/HEAD/README.md -------------------------------------------------------------------------------- /screentogif.install/screentogif.install.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickeManarin/ScreenToGif-Chocolatey/HEAD/screentogif.install/screentogif.install.nuspec -------------------------------------------------------------------------------- /screentogif.install/tools/chocolateyInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickeManarin/ScreenToGif-Chocolatey/HEAD/screentogif.install/tools/chocolateyInstall.ps1 -------------------------------------------------------------------------------- /screentogif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickeManarin/ScreenToGif-Chocolatey/HEAD/screentogif.png -------------------------------------------------------------------------------- /screentogif.portable/screentogif.portable.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickeManarin/ScreenToGif-Chocolatey/HEAD/screentogif.portable/screentogif.portable.nuspec -------------------------------------------------------------------------------- /screentogif.portable/tools/chocolateyInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickeManarin/ScreenToGif-Chocolatey/HEAD/screentogif.portable/tools/chocolateyInstall.ps1 -------------------------------------------------------------------------------- /screentogif.portable/tools/chocolateyUninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickeManarin/ScreenToGif-Chocolatey/HEAD/screentogif.portable/tools/chocolateyUninstall.ps1 -------------------------------------------------------------------------------- /screentogif/screentogif.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickeManarin/ScreenToGif-Chocolatey/HEAD/screentogif/screentogif.nuspec --------------------------------------------------------------------------------