BUG-2091: Fixed a missing configuration for the .zip version of Greenshot, this means the logger was configured wrong.

This commit is contained in:
Robin 2016-12-29 20:59:27 +01:00
commit 08d28ff640
3 changed files with 25 additions and 0 deletions

View file

@ -215,8 +215,11 @@ Function PackageZip {
"$sourcebase\GreenshotPlugin.dll",
"$sourcebase\LinqBridge.dll",
"$sourcebase\log4net.dll",
"$sourcebase\log4net-zip.xml"
"$destbase\additional_files\*.txt" ) | foreach { Copy-Item $_ "$destzip\" }
Rename-Item "$destzip\log4net-zip.xml" "$destzip\log4net.xml"
$zipOutput = "$(get-location)\zip"
$zip7 = "$(get-location)\greenshot\tools\7zip\7za.exe"
$arguments = @('a', '-mx9', '-tzip', '-r', "$destbase\Greenshot-NO-INSTALLER-$fileversion.zip", "$destzip\*")