Ready to clone and code.

This commit is contained in:
simon
2024-12-02 11:20:24 +00:00
committed by github-actions[bot]
parent 4c054008f7
commit d2b1d4bcfa
18 changed files with 27 additions and 118 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 LevelInputProvider.sln
.PHONY: build
build: issetup ## Format code.
dotnet build project_name.sln
dotnet build LevelInputProvider.sln
.PHONY: publish
publish: issetup ## Format code.
dotnet publish -c Release project_name.sln
dotnet publish -c Release LevelInputProvider.sln
.PHONY: fmt
fmt: issetup ## Format code.
dotnet format project_name.sln
dotnet format LevelInputProvider.sln
.PHONY: lint
lint: issetup ## Lint code.
dotnet format --verify-no-changes --verbosity diagnostic project_name.sln
dotnet format --verify-no-changes --verbosity diagnostic LevelInputProvider.sln
.PHONY: test
test: issetup ## Run tests and generate coverage report.
dotnet test project_name.sln
dotnet test LevelInputProvider.sln
.PHONY: clean
clean: issetup ## Clean unused files.
dotnet clean project_name.sln
dotnet clean LevelInputProvider.sln
.PHONY: release
release: issetup ## Create a new tag for release.