✅ Ready to clone and code.
This commit is contained in:

committed by
github-actions[bot]
![github-actions[bot]](/assets/img/avatar_default.png)
parent
c9a9b12831
commit
a49ea792cc
14
Makefile
14
Makefile
@@ -17,31 +17,31 @@ help: ## Show the help.
|
||||
|
||||
.PHONY: buildrel
|
||||
buildrel: issetup ## Format code.
|
||||
dotnet build -c Release project_name.sln
|
||||
dotnet build -c Release song_of_the_day.sln
|
||||
|
||||
.PHONY: build
|
||||
build: issetup ## Format code.
|
||||
dotnet build project_name.sln
|
||||
dotnet build song_of_the_day.sln
|
||||
|
||||
.PHONY: publish
|
||||
publish: issetup ## Format code.
|
||||
dotnet publish -c Release project_name.sln
|
||||
dotnet publish -c Release song_of_the_day.sln
|
||||
|
||||
.PHONY: fmt
|
||||
fmt: issetup ## Format code.
|
||||
dotnet format project_name.sln
|
||||
dotnet format song_of_the_day.sln
|
||||
|
||||
.PHONY: lint
|
||||
lint: issetup ## Lint code.
|
||||
dotnet format --verify-no-changes --verbosity diagnostic project_name.sln
|
||||
dotnet format --verify-no-changes --verbosity diagnostic song_of_the_day.sln
|
||||
|
||||
.PHONY: test
|
||||
test: issetup ## Run tests and generate coverage report.
|
||||
dotnet test project_name.sln
|
||||
dotnet test song_of_the_day.sln
|
||||
|
||||
.PHONY: clean
|
||||
clean: issetup ## Clean unused files.
|
||||
dotnet clean project_name.sln
|
||||
dotnet clean song_of_the_day.sln
|
||||
|
||||
.PHONY: release
|
||||
release: issetup ## Create a new tag for release.
|
||||
|
Reference in New Issue
Block a user