chore: scaffold dotnet websocket client with login flow and cross-platform makefile

This commit is contained in:
2025-03-19 19:40:31 +00:00
commit c867bded44
4 changed files with 111 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# Author: retoor@molodetz.nl
# Makefile for building WebSocketClient project
.PHONY: all clean linux windows
run:
dotnet run
all: linux windows
linux:
dotnet publish -c Release -r linux-x64 --self-contained --framework net9.0
windows:
dotnet publish -c Release -r win-x64 --self-contained --framework net9.0
clean:
dotnet clean