Skip to content

📁 .NET Template

A minimal, batteries-included template for new .NET projects and libraries. Skip the boilerplate — start shipping.

Repository: devantler-tech/dotnet-template

  • 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.editorconfig with opinionated .NET code style
  • Dependency managementDependabot keeps NuGet packages and Actions up to date
  • Release automation — Semantic versioning and automated GitHub Releases
Terminal window
# Create a new repo from the template
gh repo create my-project --template devantler-tech/dotnet-template --public --clone
# Restore packages
cd my-project && dotnet restore
# Run tests
dotnet test