Nando.Aspire.Temporal
1.0.0-preview.3
This is a prerelease version of Nando.Aspire.Temporal.
dotnet add package Nando.Aspire.Temporal --version 1.0.0-preview.3
NuGet\Install-Package Nando.Aspire.Temporal -Version 1.0.0-preview.3
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="Nando.Aspire.Temporal" Version="1.0.0-preview.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Nando.Aspire.Temporal" Version="1.0.0-preview.3" />
<PackageReference Include="Nando.Aspire.Temporal" />
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 Nando.Aspire.Temporal --version 1.0.0-preview.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Nando.Aspire.Temporal, 1.0.0-preview.3"
#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 Nando.Aspire.Temporal@1.0.0-preview.3
#: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=Nando.Aspire.Temporal&version=1.0.0-preview.3&prerelease
#tool nuget:?package=Nando.Aspire.Temporal&version=1.0.0-preview.3&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Nando.Aspire.Temporal
.NET Aspire hosting integration for Temporal — supports both local container-based development and Temporal Cloud.
Installation
dotnet add package Nando.Aspire.Temporal
Quick Start
Dev Server (simplest setup)
using Nando.Aspire.Temporal;
var builder = DistributedApplication.CreateBuilder(args);
var temporal = builder.AddTemporalDevServer("temporal");
builder.AddProject<Projects.MyWorker>("worker")
.WithReference(temporal)
.WaitFor(temporal);
builder.Build().Run();
Temporal with Postgres
var postgres = builder.AddPostgres("postgres");
var temporal = builder.AddTemporal("temporal")
.WithPostgres(postgres)
.WithtTemporalAdminTools()
.WithtTemporalUi();
Temporal Cloud
var serverEndpoint = builder.AddParameter("temporal-server-endpoint");
var domain = builder.AddParameter("temporal-domain");
var apiKey = builder.AddParameter("temporal-api-key", secret: true);
var temporal = builder.AddTemporalCloud("temporal", serverEndpoint, domain, apiKey);
builder.AddProject<Projects.MyWorker>("worker")
.WithReference(temporal);
Features
| Feature | Method |
|---|---|
| Dev Server (in-memory) | AddTemporalDevServer() |
| Full Temporal Server | AddTemporal() |
| Postgres persistence | WithPostgres() |
| Admin Tools container | WithtTemporalAdminTools() |
| Web UI container | WithtTemporalUi() |
| Temporal Cloud | AddTemporalCloud() |
Environment Variables
Injected automatically via WithReference():
TEMPORAL_ADDRESS— Server endpoint (e.g.,localhost:7233)TEMPORAL_NAMESPACE— Namespace/domainTEMPORAL_API_KEY— API key (Temporal Cloud only)
Configuration
Control container image versions via configuration:
{
"TEMPORAL_VERSION": "1.24.2",
"TEMPORAL_ADMINTOOLS_VERSION": "1.24.2",
"TEMPORAL_UI_VERSION": "2.26.2"
}
Documentation & Samples
📖 Full documentation and samples: github.com/fnandop/nando-aspire-temporal
License
MIT
| 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Aspire.Hosting (>= 9.5.0)
- Aspire.Hosting.MySql (>= 9.5.0)
- Aspire.Hosting.PostgreSQL (>= 9.5.0)
- Temporalio.Extensions.Hosting (>= 1.9.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.0-preview.3 | 74 | 4/30/2026 |
| 1.0.0-preview.2 | 78 | 3/16/2026 |
| 1.0.0-preview.1 | 73 | 3/13/2026 |