Soenneker.Managers.HashSaving
4.0.1287
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Managers.HashSaving --version 4.0.1287
NuGet\Install-Package Soenneker.Managers.HashSaving -Version 4.0.1287
<PackageReference Include="Soenneker.Managers.HashSaving" Version="4.0.1287" />
<PackageVersion Include="Soenneker.Managers.HashSaving" Version="4.0.1287" />
<PackageReference Include="Soenneker.Managers.HashSaving" />
paket add Soenneker.Managers.HashSaving --version 4.0.1287
#r "nuget: Soenneker.Managers.HashSaving, 4.0.1287"
#:package Soenneker.Managers.HashSaving@4.0.1287
#addin nuget:?package=Soenneker.Managers.HashSaving&version=4.0.1287
#tool nuget:?package=Soenneker.Managers.HashSaving&version=4.0.1287
Soenneker.Managers.HashSaving
Writes a precomputed hash into a repository checkout, optionally removes packaged resources, then commits and pushes the change.
Install
dotnet add package Soenneker.Managers.HashSaving
Usage
using Microsoft.Extensions.DependencyInjection;
using Soenneker.Managers.HashSaving.Abstract;
using Soenneker.Managers.HashSaving.Registrars;
services.AddHashSavingManagerAsSingleton();
IHashSavingManager hashes =
serviceProvider.GetRequiredService<IHashSavingManager>();
await hashes.SaveHashToGitRepoWithoutClearingResources(
gitDirectory: repositoryPath,
newHash: verifiedHash,
hashFileName: "hash.txt",
name: "Automation",
email: "automation@example.com",
token: githubToken,
cancellationToken);
Each method writes the hash and immediately commits and pushes all working-tree changes using the message Updates hash for new version. Use it only with a disposable, dedicated checkout whose complete contents are intended for that commit.
What you get
IHashSavingManager— Handles hashing and saving.HashSavingManagerRegistrar— Handles hashing and saving.
API at a glance
| API | What it does | Result / important behavior |
|---|---|---|
IHashSavingManager.SaveHashToGitRepoWithoutClearingResources(gitDirectory, newHash, hashFileName, name, email, token, cancellationToken) |
Saves hash To Git Repo Without Clearing Resources. | A task that completes when the hash to git repo without clearing resources has been saved. |
IHashSavingManager.SaveHashToGitRepoAsFile(gitDirectory, libraryName, newHash, fileName, hashFileName, name, email, username, token, cancellationToken) |
Saves hash To Git Repo As File. | A task that completes when the hash to git repo as file has been saved. |
IHashSavingManager.SaveHashToGitRepoAsDirectory(gitDirectory, newHash, targetDir, hashFileName, name, email, username, token, cancellationToken) |
Saves hash To Git Repo As Directory. | A task that completes when the hash to git repo as directory has been saved. |
HashSavingManagerRegistrar.AddHashSavingManagerAsSingleton(services) |
Adds IHashSavingManager as a singleton service. |
The same service collection, so additional registrations can be chained. |
HashSavingManagerRegistrar.AddHashSavingManagerAsScoped(services) |
Adds IHashSavingManager as a scoped service. |
The same service collection, so additional registrations can be chained. |
Practical notes
SaveHashToGitRepoWithoutClearingResources()leaves packaged resources in place.SaveHashToGitRepoAsFile()deletessrc/<libraryName>/Resources/<fileName>before committing.SaveHashToGitRepoAsDirectory()deletes the supplied resource directory before committing.- Hash and resource paths are required to remain inside
gitDirectory; traversal and outside paths are rejected before deletion. usernameis retained for API compatibility but is not used.nameandemailset commit attribution;tokenauthenticates the push.- Cancellation can stop the operation between local mutation, commit, and push. Run recovery or discard the dedicated checkout rather than assuming rollback.
| Product | Versions 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. |
-
net10.0
- Soenneker.Git.Util (>= 4.0.3744)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Soenneker.Managers.HashSaving:
| Package | Downloads |
|---|---|
|
Soenneker.Managers.Runners
Handles Runner operations and coordination |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.0.1303 | 572 | 9/10/2026 |
| 4.0.1301 | 260 | 9/9/2026 |
| 4.0.1300 | 1,346 | 9/9/2026 |
| 4.0.1299 | 727 | 9/9/2026 |
| 4.0.1298 | 222 | 9/9/2026 |
| 4.0.1297 | 1,611 | 9/8/2026 |
| 4.0.1296 | 394 | 9/8/2026 |
| 4.0.1295 | 1,415 | 9/8/2026 |
| 4.0.1294 | 51 | 9/8/2026 |
| 4.0.1293 | 51 | 9/8/2026 |
| 4.0.1292 | 744 | 9/8/2026 |
| 4.0.1291 | 1,317 | 9/8/2026 |
| 4.0.1290 | 416 | 9/7/2026 |
| 4.0.1289 | 55 | 9/7/2026 |
| 4.0.1288 | 519 | 9/7/2026 |
| 4.0.1287 | 3,928 | 9/5/2026 |
| 4.0.1286 | 887 | 9/5/2026 |
| 4.0.1285 | 1,820 | 9/5/2026 |
| 4.0.1284 | 87 | 9/4/2026 |
| 4.0.1283 | 91 | 9/4/2026 |
Update dependency Soenneker.Git.Util to 4.0.3744 (#1831)