1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2026-03-22 13:03:23 +08:00

UXAssist 1.5.7

This commit is contained in:
2026-03-20 15:38:33 +08:00
parent a346778db9
commit a5b2bdedd4
4 changed files with 8 additions and 4 deletions

View File

@@ -100,8 +100,8 @@
<!-- Delete previous zip if present -->
<Delete Files="$(_ZipPath)" Condition="Exists('$(_ZipPath)')" />
<!-- Create zip using powershell.exe (explicit executable works from any shell) -->
<Exec Command="powershell.exe -NoProfile -Command &quot;Compress-Archive -Path '$(_StagingDir)\*' -DestinationPath '$(_ZipPath)'&quot;" />
<!-- Create zip using MSBuild ZipDirectory task no shell, no quoting issues -->
<ZipDirectory SourceDirectory="$(_StagingDir)" DestinationFile="$(_ZipPath)" />
<!-- Clean up staging directory -->
<RemoveDir Directories="$(_StagingDir)" />