
all: test

test: 
	dotnet test

clean: 
	-@dotnet clean 2>&1 > /dev/null

.PHONY: all test clean

.SILENT: clean
