📁 .NET Template
A minimal, batteries-included template for new .NET projects and libraries. Skip the boilerplate — start shipping.
Repository: devantler-tech/dotnet-template
What’s Inside
Section titled “What’s Inside”- CI/CD — GitHub Actions workflows for build, test, lint, and release
- Publishing — Release libraries to GitHub Packages and NuGet automatically
- Testing — Test projects with coverage reporting via GitHub Code Quality
- Code style —
.editorconfigwith opinionated .NET code style - Dependency management — Dependabot keeps NuGet packages and Actions up to date
- Release automation — Semantic versioning and automated GitHub Releases
Getting Started
Section titled “Getting Started”# Create a new repo from the templategh repo create my-project --template devantler-tech/dotnet-template --public --clonecd my-project
# Repoint the `Example` scaffold (.slnx, src/, tests/, README) to your project# name in one shot — run this first. With no argument it derives a PascalCase# name from your origin GitHub remote. Review the result with `git diff`../scripts/rename-placeholders.sh Widget # e.g. your project name
# Restore packagesdotnet restore
# Run testsdotnet test