📁 .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 --clone
# Restore packagescd my-project && dotnet restore
# Run testsdotnet test