Skip to content

Commit

Permalink
und - Updated pack scripts for .NET 8.0
Browse files Browse the repository at this point in the history
---

Type: und
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Nov 25, 2023
1 parent c639726 commit 5865338
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/pack.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if "%releaseconfig%" == "" set releaseconfig=Release
:packbin
echo Packing binary...
"%ProgramFiles%\7-Zip\7z.exe" a -tzip %temp%/%version%-bin.zip "..\VisualCard\bin\%releaseconfig%\netstandard2.0\*"
"%ProgramFiles%\7-Zip\7z.exe" a -tzip %temp%/%version%-demo.zip "..\VisualCard.ShowContacts\bin\%releaseconfig%\net6.0\*"
"%ProgramFiles%\7-Zip\7z.exe" a -tzip %temp%/%version%-demo.zip "..\VisualCard.ShowContacts\bin\%releaseconfig%\net8.0\*"
if %errorlevel% == 0 goto :complete
echo There was an error trying to pack binary (%errorlevel%).
goto :finished
Expand Down
2 changes: 1 addition & 1 deletion tools/pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fi
# Pack binary
echo Packing binary...
cd "../VisualCard/bin/$releaseconf/netstandard2.0/" && "$zippath" -r /tmp/$version-bin.zip . && cd -
cd "../VisualCard.ShowContacts/bin/$releaseconf/net6.0/" && "$zippath" -r /tmp/$version-bin.zip . && cd -
cd "../VisualCard.ShowContacts/bin/$releaseconf/net8.0/" && "$zippath" -r /tmp/$version-bin.zip . && cd -
if [ ! $? == 0 ]; then
echo Packing using zip failed.
exit 1
Expand Down

0 comments on commit 5865338

Please sign in to comment.