github-nuget-demo 1.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package github-nuget-demo --version 1.1.2
                    
NuGet\Install-Package github-nuget-demo -Version 1.1.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="github-nuget-demo" Version="1.1.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="github-nuget-demo" Version="1.1.2" />
                    
Directory.Packages.props
<PackageReference Include="github-nuget-demo" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add github-nuget-demo --version 1.1.2
                    
#r "nuget: github-nuget-demo, 1.1.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package github-nuget-demo@1.1.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=github-nuget-demo&version=1.1.2
                    
Install as a Cake Addin
#tool nuget:?package=github-nuget-demo&version=1.1.2
                    
Install as a Cake Tool

Github nuget demo

A demo of automatic publishing of a C# NuGet library to both GitHub Packages and nuget.org.

Setup

To use this template for your own project, configure these repository secrets (Settings → Secrets → Actions):

Secret Description
NUGET_API_KEY API key from https://www.nuget.org/account/apikeys with push permissions

The GITHUB_TOKEN for GitHub Packages is provided automatically.

Why both registries?

GitHub Packages requires authentication even for public packages, making it impractical for public distribution. nuget.org allows anonymous access, so consumers can simply run:

dotnet add package GithubNugetDemo

Automatic Releasing

Every commit to main triggers a build & test.

If there are release-worthy changes (commits with feat:, fix:, etc.), a release is created:

  1. Version calculation (via git-cliff)
  2. NuGet package creation
  3. Git tag creation
  4. GitHub Release with changelog
  5. Push to GitHub Packages
  6. Push to nuget.org

Commits with internal prefixes (ci:, refactor:, etc.) do not trigger a release.

If there are no release-worthy commits then no release is generated.

Commit Messages

This project uses Conventional Commits format. Optionally include a scope in parentheses: feat(subsystem): add support for arrays.

Prefixes that appear in release notes

Prefix Description
feat: ✨ New features
fix: 🐛 Bug fixes
perf: ⚡ Performance improvements
doc: 📚 Documentation changes
style: 🎨 Code style/formatting

See cliff.toml for definitive list.

Internal prefixes (not shown in release notes)

These are recommended for consistency but won't appear in user-facing changelogs:

Prefix Description
refactor: Code restructuring without behaviour change
test: Adding or updating tests
ci: CI/CD pipeline changes
build: Build system changes
chore: Maintenance tasks

How it works

Release notes are generated from all commits since the last tag, regardless of whether they're on main, in branches, or merge commits. When committing, think about what you want in the release notes:

  • Use a release-note prefix (like feat: or fix:) when the change is meaningful to library users
  • Use an internal prefix (like refactor: or ci:) for changes that don't affect users
  • Non-semantic commit messages (e.g. "WIP", "typo fix", "cleanup") are also ignored

This means you can commit freely during development without worrying about polluting release notes.

Version Bumping

By default, each release increments the patch version (e.g. 0.0.1 → 0.0.2).

To bump minor or major versions, add a footer to your commit message:

feat: add new feature

bump: minor
feat: breaking change

bump: major

Local Commands

Preview release notes for the current version:

./release-notes.sh

Preview unreleased changes:

./release-notes.sh --preview
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.0 91 2/13/2026
1.1.2 90 2/13/2026
1.1.1 91 2/13/2026