Files
QuickLook/Scripts/pack-7z.ps1
ema 22a5d69ac8
Some checks are pending
MSBuild / build (push) Waiting to run
MSBuild / publish (push) Blocked by required conditions
Remove the WoW64HookHelper from release #1634
Use https://github.com/QL-Win/QuickLook.Plugin.WoW64HookHelper instead
2025-06-02 18:59:17 +08:00

12 lines
442 B
PowerShell

$version = git describe --always --tags --exclude latest
Set-Location ../Build
Write-Output "This file makes QuickLook portable." >> .\Package\portable.lock
Remove-Item .\QuickLook-$version.7z -ErrorAction SilentlyContinue
Remove-Item -Recurse .\Package\QuickLook.WoW64HookHelper.exe -ErrorAction SilentlyContinue
7z.exe a .\QuickLook-$version.7z .\Package\* -t7z -mx=9 -ms=on -m0=lzma2 -mf=BCJ2 -r -y
Remove-Item .\Package\portable.lock