summary refs log tree commit diff
path: root/SpacebarDiscordDesktopLauncher/build.sh
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-12-09 02:58:11 +0100
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-12-09 02:58:47 +0100
commit959e18046d6ec0bc9eefc8efd9b136cb14314af6 (patch)
tree76a30a39ccce380ee79bc79f4c96dfd35c44a6e9 /SpacebarDiscordDesktopLauncher/build.sh
downloadSpacebarDiscordDesktopLauncher-959e18046d6ec0bc9eefc8efd9b136cb14314af6.tar.xz
Initial commit HEAD master
Diffstat (limited to 'SpacebarDiscordDesktopLauncher/build.sh')
-rwxr-xr-xSpacebarDiscordDesktopLauncher/build.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/SpacebarDiscordDesktopLauncher/build.sh b/SpacebarDiscordDesktopLauncher/build.sh
new file mode 100755
index 0000000..dd38d43
--- /dev/null
+++ b/SpacebarDiscordDesktopLauncher/build.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+for arch in {x64,arm64}
+do
+  for platform in {osx,win,linux}
+  do
+    dotnet publish -c Release -r ${platform}-${arch} --nologo --property AssemblyName=SpacebarDiscordDesktopLauncher-${platform}-${arch} -o bin/release
+  done
+done
+wait
\ No newline at end of file