What problem does it solve? Deploying a .NET 10 WPF desktop application involves coordinating builds, tests, NSIS installer creation, code signing, and CI/CD releases, and missing a step produces broken or unsigned artifacts. ## Core Features & Use Cases - Pre-deployment Checklist: Verifies Windows version, .NET 10 SDK, NSIS, signing certificates, and GitHub secrets before release. - Three Deployment Methods: NSIS installer via build.ps1, self-contained single-file EXE via dotnet publish, and a development setup workflow. - Code Signing & CI/CD: Covers signtool usage, GitHub Actions secrets, and the ci.yml, release.yml, and virustotal.yml workflows. - Use Case: A maintainer preparing Redball v2.1.655 for release runs the checklist, bumps the version with Bump-Version.ps1, executes the full signed build pipeline, and publishes a GitHub Release with the branded installer. ## Quick Start Ask the assistant to walk you through building and signing a Redball release installer using the build script and code signing certificate.