From efb4c085d5c81d6733859d1eb535ec718931ef48 Mon Sep 17 00:00:00 2001 From: Frank Skare Date: Fri, 8 May 2020 15:56:54 +0200 Subject: [PATCH] fix release script --- Release.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Release.ps1 b/Release.ps1 index b3c9ea1..b322fa3 100644 --- a/Release.ps1 +++ b/Release.ps1 @@ -102,6 +102,9 @@ else & $msBuild mpv.net.sln -t:Rebuild -p:Configuration=Debug -p:Platform=x64 if ($LastExitCode) { throw $LastExitCode } + & $msBuild mpv.net.sln -t:Rebuild -p:Configuration=Debug -p:Platform=x86 + if ($LastExitCode) { throw $LastExitCode } + $targetDir = "$desktopDir\mpv.net-portable-x64-$($versionInfo.FileVersion)-beta" Copy-Item .\mpv.net\bin\x64 $targetDir -Recurse -Exclude System.Management.Automation.xml & $7z a -t7z -mx9 "$targetDir.7z" -r "$targetDir\*"