summary refs log tree commit diff
path: root/SpacebarDiscordDesktopLauncher/build.sh
diff options
context:
space:
mode:
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