7 lines
201 B
Makefile
7 lines
201 B
Makefile
|
.PHONY: build
|
||
|
|
||
|
build:
|
||
|
@dotnet build
|
||
|
@echo -e "\033c\nAdvent of Code\n\nBy: @TiagoRG\nGitHub: https://github.com/TiagoRG\n\n============================================================="
|
||
|
@dotnet run
|