Skip to content
/ repo-dotnet Public template

A template repo for dotnet projects

License

Notifications You must be signed in to change notification settings

libanvl/repo-dotnet

Repository files navigation

.NET Repo Template

Workflows

Be sure to check the workflows and remove or adjust as needed.

  • .github/workflows/libanvl-dotnet-ci.yml
  • .github/workflows/libanvl-nuget-release.yml
  • .github/workflows/libanvl-docfx.yml

The default workflows use reusable workflows and composite actions from libanvl/ci

Required Repo or Org Secrets

Integrating With Existing Repository

  1. Add a pull-only remote for the libanvl/repo-dotnet template
  2. Fetch the latest changes from the template repository
  3. Merge the main branch from the template, allowing unrelated histories and squashing commits
  4. Carefully review changes, and fix conflicts
  5. Commit the squashed changes
git remote add template https://github.com/libanvl/repo-dotnet.git
git fetch template
git merge template/main --allow-unrelated-histories --squash
git commit -m "Integrate with libanvl/repo-dotnet template"