Back to project.

Raw source file available here .

# 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