Kogoshvili.Temporal.Hosting
1.0.3
dotnet add package Kogoshvili.Temporal.Hosting --version 1.0.3
NuGet\Install-Package Kogoshvili.Temporal.Hosting -Version 1.0.3
<PackageReference Include="Kogoshvili.Temporal.Hosting" Version="1.0.3" />
<PackageVersion Include="Kogoshvili.Temporal.Hosting" Version="1.0.3" />
<PackageReference Include="Kogoshvili.Temporal.Hosting" />
paket add Kogoshvili.Temporal.Hosting --version 1.0.3
#r "nuget: Kogoshvili.Temporal.Hosting, 1.0.3"
#:package Kogoshvili.Temporal.Hosting@1.0.3
#addin nuget:?package=Kogoshvili.Temporal.Hosting&version=1.0.3
#tool nuget:?package=Kogoshvili.Temporal.Hosting&version=1.0.3
Kogoshvili.Temporal.Hosting
A generic-host worker starter for the Temporal .NET SDK,
inspired by the Java Spring Boot Temporal starter. It layers configuration
binding, convention-based auto-discovery, a metrics interceptor, and a
test-server toggle on top of
Temporalio.Extensions.Hosting.
Unlike Kogoshvili.Temporal.Analyzers, this library references the real
Temporalio SDK and targets
net8.0.
Features
- Worker registration —
AddTemporalWorkerwith explicit type registration or opt-inAddDiscoveredTypes(), per-queue tuning, worker versioning, and multi-namespace support. → docs/worker-registration.md - Activity-options presets — default/named
ActivityOptionsfrom config, resolved via theActivityOpsfacade. → docs/activity-options.md - Workflow-options presets & ID conventions — typed
IWorkflowOpsfacade, child-workflow ops, and workflow settings. → docs/workflow-ops.md - Saga — compensation helper for rolling back partial work on failure. → docs/saga.md
- Heartbeating activities —
HeartbeatingActivitybase for long-running activities that heartbeat and resume from a checkpoint. → docs/heartbeating.md - Schedules — idempotent schedule registration from config or code. → docs/schedules.md
- Search attributes — idempotent search-attribute bootstrap. → docs/search-attributes.md
- Connection & TLS — connection retry/wait, transport options, TLS sources (file/env/Key Vault/Secrets Manager). → docs/connection.md
- Observability — metrics, tracing, and Core log forwarding. → docs/observability.md
- Health checks — client/worker liveness checks. → docs/health-checks.md
- Payload codecs & per-field secrets — encryption, claim-check, and
Secret<T>field encryption. → docs/data-converter.md
Full configuration reference (all keys in one JSON block). → docs/configuration.md
Usage
using Kogoshvili.Temporal.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
var builder = Host.CreateApplicationBuilder(args);
builder.Services
.AddTemporal(builder.Configuration)
.AddTemporalWorker("my-task-queue")
.AddDiscoveredTypes();
using var host = builder.Build();
await host.RunAsync();
Configuration binds from the Temporal section of appsettings.json, overridden
by Temporal__* environment variables. See
docs/configuration.md for the full schema.
Not affiliated with or endorsed by Temporal Technologies.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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. |
-
net8.0
- Kogoshvili.Temporal.Codec (>= 1.0.3)
- Kogoshvili.Temporal.Configuration (>= 1.0.3)
- Microsoft.Extensions.Diagnostics.HealthChecks (>= 8.0.1)
- Microsoft.Extensions.Hosting (>= 8.0.1)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 8.0.0)
- OpenTelemetry.Api (>= 1.18.0)
- Temporalio (>= 1.18.0)
- Temporalio.Extensions.Hosting (>= 1.18.0)
- Temporalio.Extensions.OpenTelemetry (>= 1.18.0)
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.0.3 | 92 | 9/4/2026 |
| 1.0.2 | 98 | 9/3/2026 |
| 1.0.1 | 87 | 9/1/2026 |
| 1.0.0 | 97 | 8/31/2026 |
| 1.0.0-beta.10 | 78 | 8/28/2026 |
| 1.0.0-beta.9 | 63 | 8/28/2026 |
Generic-host Temporal worker starter: config binding, workflow/activity auto-discovery, shared DataConverter, metrics, tracing, schedules, health checks, and a test-server toggle.