Ready to clone and code.

This commit is contained in:
simon
2025-04-02 20:06:02 +00:00
committed by github-actions[bot]
parent c9a9b12831
commit a49ea792cc
19 changed files with 28 additions and 119 deletions

View File

@@ -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.