What problem does it solve? Deploying a .NET Aspire application involves choosing a target platform, configuring the AppHost deployment environment, resolving parameters and secrets, and running the right publish or deploy pipeline. This Skill routes all of that through the Aspire CLI so deployment stays AppHost-native instead of hand-editing Bicep, Helm, or Compose files. ## Core Features & Use Cases - Target-aware deployment routing: Detects existing AppHost deployment environments and guides target selection across Docker Compose, Kubernetes, Azure Container Apps, Azure App Service, Azure Kubernetes Service (AKS), and AWS. - Preflight and preview: Inventories parameters, secrets, and compute-environment assignments, then runs aspire publish --list-steps or aspire deploy --list-steps before any resources are provisioned. - CI/CD automation: Provides GitHub Actions workflow patterns for publishing artifacts, pushing container images, deploying with OIDC Azure login, and gated teardown via aspire destroy. - Use Case: You have an Aspire AppHost and want to ship it to Azure Container Apps from GitHub Actions. The Skill adds the Azure target integration, configures subscription and resource group settings, and generates a workflow that runs aspire deploy --environment Production --non-interactive. ## Quick Start Ask the assistant to deploy your Aspire app to Azure Container Apps and it will inspect the AppHost, add the target integration, preflight parameters, and run the Aspire deploy pipeline.