Soenneker.Managers.HashSaving
4.0.1306
Prefix Reserved
See the version list below for details.
dotnet add package Soenneker.Managers.HashSaving --version 4.0.1306
NuGet\Install-Package Soenneker.Managers.HashSaving -Version 4.0.1306
<PackageReference Include="Soenneker.Managers.HashSaving" Version="4.0.1306" />
<PackageVersion Include="Soenneker.Managers.HashSaving" Version="4.0.1306" />
<PackageReference Include="Soenneker.Managers.HashSaving" />
paket add Soenneker.Managers.HashSaving --version 4.0.1306
#r "nuget: Soenneker.Managers.HashSaving, 4.0.1306"
#:package Soenneker.Managers.HashSaving@4.0.1306
#addin nuget:?package=Soenneker.Managers.HashSaving&version=4.0.1306
#tool nuget:?package=Soenneker.Managers.HashSaving&version=4.0.1306
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.3770)
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.1318 | 0 | 9/16/2026 |
| 4.0.1317 | 0 | 9/16/2026 |
| 4.0.1316 | 27 | 9/15/2026 |
| 4.0.1314 | 1,921 | 9/13/2026 |
| 4.0.1313 | 80 | 9/13/2026 |
| 4.0.1312 | 195 | 9/13/2026 |
| 4.0.1311 | 79 | 9/13/2026 |
| 4.0.1310 | 962 | 9/13/2026 |
| 4.0.1309 | 577 | 9/13/2026 |
| 4.0.1308 | 2,511 | 9/12/2026 |
| 4.0.1307 | 883 | 9/12/2026 |
| 4.0.1306 | 481 | 9/12/2026 |
| 4.0.1305 | 81 | 9/12/2026 |
| 4.0.1303 | 2,944 | 9/10/2026 |
| 4.0.1301 | 313 | 9/9/2026 |
| 4.0.1300 | 1,412 | 9/9/2026 |
| 4.0.1299 | 784 | 9/9/2026 |
| 4.0.1298 | 273 | 9/9/2026 |
| 4.0.1297 | 1,671 | 9/8/2026 |
| 4.0.1296 | 446 | 9/8/2026 |
Update dependency Soenneker.Git.Util to 4.0.3770 (#1852)