20 lines
340 B
Makefile
20 lines
340 B
Makefile
|
# 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
|