From 1bc8023cfced440f31544cb3c7383b58cad1c6a4 Mon Sep 17 00:00:00 2001 From: Aptivi CEO Date: Sun, 26 Nov 2023 09:41:08 +0300 Subject: [PATCH] upd - Updated workflows for .NET 8.0 --- tools/pack.cmd | 2 +- tools/pack.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/pack.cmd b/tools/pack.cmd index e9e4224..90f6c62 100644 --- a/tools/pack.cmd +++ b/tools/pack.cmd @@ -23,7 +23,7 @@ if "%releaseconfig%" == "" set releaseconfig=Release :packbin echo Packing binary... -"%ProgramFiles%\7-Zip\7z.exe" a -tzip %temp%/%ksversion%-bin.zip "..\RetroKS\bin\%releaseconfig%\net6.0\*" +"%ProgramFiles%\7-Zip\7z.exe" a -tzip %temp%/%ksversion%-bin.zip "..\RetroKS\bin\%releaseconfig%\net8.0\*" "%ProgramFiles%\7-Zip\7z.exe" a -tzip %temp%/%ksversion%-bin7.zip "..\RetroKS\bin\%releaseconfig%\net7.0\*" "%ProgramFiles%\7-Zip\7z.exe" a -tzip %temp%/%ksversion%-bin48.zip "..\RetroKS\bin\%releaseconfig%\net48\*" if %errorlevel% == 0 goto :complete diff --git a/tools/pack.sh b/tools/pack.sh index 2385f91..13d7132 100644 --- a/tools/pack.sh +++ b/tools/pack.sh @@ -33,7 +33,7 @@ fi # Pack binary echo Packing binary... -cd "../RetroKS/bin/$ksreleaseconf/net6.0/" && "$zippath" -r /tmp/$ksversion-bin.zip . && cd - +cd "../RetroKS/bin/$ksreleaseconf/net8.0/" && "$zippath" -r /tmp/$ksversion-bin.zip . && cd - cd "../RetroKS/bin/$ksreleaseconf/net7.0/" && "$zippath" -r /tmp/$ksversion-bin7.zip . && cd - cd "../RetroKS/bin/$ksreleaseconf/net48/" && "$zippath" -r /tmp/$ksversion-bin48.zip . && cd - if [ ! $? == 0 ]; then