chore: scaffold dotnet websocket client with login flow and cross-platform makefile
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user