├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── VSZipper ├── Program.cs ├── VSZipper.csproj └── appsettings.json ├── VSZipperApp.sln └── ZipperLibrary ├── Zipper.cs └── ZipperLibrary.csproj /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimCorey/VSZipper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimCorey/VSZipper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimCorey/VSZipper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimCorey/VSZipper/HEAD/README.md -------------------------------------------------------------------------------- /VSZipper/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimCorey/VSZipper/HEAD/VSZipper/Program.cs -------------------------------------------------------------------------------- /VSZipper/VSZipper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimCorey/VSZipper/HEAD/VSZipper/VSZipper.csproj -------------------------------------------------------------------------------- /VSZipper/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimCorey/VSZipper/HEAD/VSZipper/appsettings.json -------------------------------------------------------------------------------- /VSZipperApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimCorey/VSZipper/HEAD/VSZipperApp.sln -------------------------------------------------------------------------------- /ZipperLibrary/Zipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimCorey/VSZipper/HEAD/ZipperLibrary/Zipper.cs -------------------------------------------------------------------------------- /ZipperLibrary/ZipperLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimCorey/VSZipper/HEAD/ZipperLibrary/ZipperLibrary.csproj --------------------------------------------------------------------------------