mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-06-17 15:51:10 +03:00
Add app build script for Linux
This commit is contained in:
parent
15db0cca8e
commit
5888d13d7c
25
app/build.sh
Executable file
25
app/build.sh
Executable file
@ -0,0 +1,25 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
if [ ! -f "DiscordHistoryTracker.sln" ]; then
|
||||||
|
echo "Missing DiscordHistoryTracker.sln in working directory!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
makezip() {
|
||||||
|
pushd "./bin/$1"
|
||||||
|
zip -9 -r "../$1.zip" .
|
||||||
|
popd
|
||||||
|
}
|
||||||
|
|
||||||
|
rm -rf "./bin"
|
||||||
|
|
||||||
|
configurations=(win-x64 linux-x64 osx-x64)
|
||||||
|
|
||||||
|
for cfg in ${configurations[@]}; do
|
||||||
|
dotnet publish Desktop -c Release -r "$cfg" -o "./bin/$cfg" -p:PublishSingleFile=true -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishReadyToRun=false -p:PublishTrimmed=true --self-contained true
|
||||||
|
makezip "$cfg"
|
||||||
|
done
|
||||||
|
|
||||||
|
dotnet publish Desktop -c Release -o "./bin/portable" --self-contained false
|
||||||
|
makezip "portable"
|
6
app/global.json
Normal file
6
app/global.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"sdk": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"rollForward": "latestMinor"
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user