[Plugin] ZipUtility (7zip)

Hey there, I’m using this for a new project and it’s working great - thanks so much. One thing: I had to change the .uplugin type from “Development” to “Runtime” for it to work in packaged builds (it would package fine, but fail to Zip things with the Development type). The working ZipUtility.uplugin file now looks like:



{
	"FileVersion": 3,
	"Version": 2,
	"VersionName": "0.3.0",
	"FriendlyName": "ZipUtility",
	"Description": "",
	"Category": "Utility",
	"CreatedBy": "Getnamo",
	"CreatedByURL": "http://www.getnamo.com",
	"DocsURL": "https://github.com/getnamo/ZipUtility-ue4",
	"MarketplaceURL": "",
	"SupportURL": "",
	"EnabledByDefault": false,
	"CanContainContent": false,
	"IsBetaVersion": false,
	"Installed": false,
	"Modules": 
		{
			"Name": "ZipUtility",
			"Type": "Runtime",                     // Changed this line
			"LoadingPhase": "Default",
			"WhitelistPlatforms": 
				"Win64",
				"Win32"
			]
		}
	]
}


Cheers!