---
title: "Aspire 13.5: Fresh pixels and better workflows"
url: https://daily.dev/posts/aspire-13-5-fresh-pixels-and-better-workflows-5kngrcvt9
source_url: https://devblogs.microsoft.com/aspire/whats-new-aspire-13-5
type: article
source: "DevBlogs"
published: 2026-08-18T22:10:48.905Z
updated: 2026-08-20T08:26:40.620Z
tags: ["kubernetes", "azure", ".net", "cli"]
reading_time: 6
upvotes: 4
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Aspire 13.5: Fresh pixels and better workflows

**[DevBlogs](https://daily.dev/sources/devblogs)** · 6 min read · 4 upvotes · 0 comments

## Summary

Microsoft's .NET Aspire 13.5 release brings a visual refresh to the dashboard and aspire.dev homepage, plus a slate of quality-of-life features. The Interaction Service now supports file uploads and progress dialogs for resource commands, and a new WithTerminal() API embeds live interactive terminal sessions directly in the dashboard. Deployment modeling gets richer too: Kubernetes environments can define persistent volumes bound to workloads, and Azure resources can be referenced across subscriptions, resource groups, and tenants via new AsExisting* methods. The Aspire CLI is now distributed through Homebrew, WinGet, npm, Nix, mise, and NuGet in addition to existing install paths.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://devblogs.microsoft.com/aspire/whats-new-aspire-13-5>

## Questions this post answers

### How do I add a persistent volume to a Kubernetes environment in Aspire 13.5?

Use AddKubernetesEnvironment to create the environment, then call AddPersistentVolume with WithStorageClass, WithCapacity, and WithAccessMode to configure it, and WithPersistentVolume on a container to bind it. Aspire emits the persistent volume claim and renders the workload as a StatefulSet. This is a preview API in Aspire 13.5, tracked under diagnostic ASPIRECOMPUTE002.

_Track preview APIs like Kubernetes persistent volumes in Aspire as they stabilize, via daily.dev._

### How can I reference an existing Azure resource in a different subscription or tenant from my Aspire AppHost?

Aspire 13.5 adds AsExistingInResourceGroup, AsExistingInSubscription, and AsExistingInTenant methods, along with run-mode and publish-mode variants, so a resource like AddAzureServiceBus can point at infrastructure owned by another team or outside its own resource group. Names and scopes can be literal values or Aspire parameters, keeping environment details out of the AppHost source.

_Developers wiring shared Azure infrastructure into their AppHost can follow this pattern via daily.dev._

### How do I get an interactive terminal for a resource inside the Aspire dashboard?

Add WithTerminal() to a resource definition and it gains an interactive terminal session inside the Aspire dashboard, letting you type into it, switch between replicas, and toggle back to console logs without stopping the session. Multiple viewers can attach simultaneously, and matching aspire terminal CLI commands let you list and attach to sessions from a shell. This is an experimental preview feature in Aspire 13.5.

_Anyone running REPLs or interactive tools inside distributed apps can follow this via daily.dev._

## Similar posts on daily.dev

- [Microsoft Releases Aspire 13.3 with Major Deployment and Frontend Updates](https://daily.dev/posts/microsoft-releases-aspire-13-3-with-major-deployment-and-frontend-updates-r5riwdgk3) · InfoQ · 9 upvotes · 1 comments
- [Aspire 13.2 Released with Expanded CLI, TypeScript AppHost Preview, and Dashboard Improvements](https://daily.dev/posts/aspire-13-2-released-with-expanded-cli-typescript-apphost-preview-and-dashboard-improvements-d9co5tm82) · InfoQ · 0 upvotes · 0 comments

---

Tags: [#kubernetes](https://daily.dev/tags/kubernetes), [#azure](https://daily.dev/tags/azure), [#.net](https://daily.dev/tags/.net), [#cli](https://daily.dev/tags/cli)

[View this post on daily.dev](https://daily.dev/posts/aspire-13-5-fresh-pixels-and-better-workflows-5kngrcvt9)
