From 97153175d5bb81ae5bf8500513bd7d16d824cd58 Mon Sep 17 00:00:00 2001 From: "Gabriel R. Antunes" Date: Mon, 1 Apr 2024 19:45:55 -0400 Subject: [PATCH] chore: Makefile: start: exit 1; --- projeto-gerar-horario/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projeto-gerar-horario/Makefile b/projeto-gerar-horario/Makefile index 0c57ac7e..a7552fa9 100644 --- a/projeto-gerar-horario/Makefile +++ b/projeto-gerar-horario/Makefile @@ -9,8 +9,10 @@ restore: test: dotnet test + start: - dotnet run --project GerarHorario-Playground/ + echo "Nenhum projeto do tipo Console para iniciar." + exit 1; docker-shell: docker build ./.devops/dotnet-sdk;