USER := $(shell cat user.secret) PASSWORD := $(shell cat password.secret) HOST := $(shell cat host.secret) build: cd src && dotnet build --no-restore run: cd entrypoint && dotnet run -- --user ${USER} --password ${PASSWORD} -H ${HOST} test: cd tests && dotnet test restore: dotnet restore && cd src && dotnet build