Skip to content

Commit 7d7977d

Browse files
committed
docs: Shorten product name from ".NET Aspire" to "Aspire" across documentation.
1 parent 628940c commit 7d7977d

5 files changed

Lines changed: 18 additions & 18 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![CI](https://github.com/aalmada/BookStore/actions/workflows/ci.yml/badge.svg)](https://github.com/aalmada/BookStore/actions/workflows/ci.yml)
44
[![CodeQL](https://github.com/aalmada/BookStore/actions/workflows/codeql.yml/badge.svg)](https://github.com/aalmada/BookStore/actions/workflows/codeql.yml)
55

6-
Full-stack .NET online book store application with event-sourced backend API and Blazor frontend, orchestrated by .NET Aspire.
6+
Full-stack .NET online book store application with event-sourced backend API and Blazor frontend, orchestrated by Aspire.
77

88
## Overview
99

@@ -12,7 +12,7 @@ This project is a demonstration and exploration of modern .NET technologies, des
1212
A complete book store management system featuring:
1313
- **Backend API**: Event-sourced ASP.NET Core Minimal APIs with Marten and PostgreSQL
1414
- **Frontend**: Blazor web application for browsing and managing books
15-
- **Orchestration**: .NET Aspire for local development, deployment, and observability
15+
- **Orchestration**: Aspire for local development, deployment, and observability
1616
- **Database**: PostgreSQL with event store and read model projections
1717
- **Modern Stack**: .NET 10 with C# 14 (latest language features)
1818

@@ -73,7 +73,7 @@ See [Analyzer Rules Documentation](docs/analyzer-rules.md) for details.
7373
- **Native OpenAPI** with Scalar UI
7474
- **Structured Logging** with correlation IDs
7575

76-
### Infrastructure (.NET Aspire)
76+
### Infrastructure (Aspire)
7777
- **Service Orchestration** for local development
7878
- **Service Discovery** between frontend and backend
7979
- **OpenTelemetry** integration for observability
@@ -171,7 +171,7 @@ BookStore/
171171
- **PostgreSQL 16** - Database with pg_trgm and unaccent extensions
172172

173173
### Infrastructure
174-
- **.NET Aspire** - Orchestration and observability
174+
- **Aspire** - Orchestration and observability
175175
- **OpenTelemetry** - Distributed tracing and metrics
176176
- **Scalar** - API documentation UI
177177
- **Docker** - Container runtime

docs/aspire-deployment-guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Aspire Deployment Guide
22

3-
This guide covers deploying the BookStore application using .NET Aspire to production environments, including Azure Container Apps and Kubernetes.
3+
This guide covers deploying the BookStore application using **Aspire** to production environments, including Azure Container Apps and Kubernetes.
44

55
## Overview
66

7-
.NET Aspire separates the act of producing deployment assets from executing a deployment:
7+
**Aspire** separates the act of producing deployment assets from executing a deployment:
88

99
- **`aspire publish`** - Generates intermediate, parameterized deployment artifacts (Docker Compose, Kubernetes manifests, Azure specifications)
1010
- **`aspire deploy`** - Executes deployment by resolving parameters and applying changes to the target environment
@@ -19,7 +19,7 @@ The BookStore application uses Aspire to orchestrate:
1919

2020
### General Requirements
2121

22-
- **.NET 10 SDK** or later (with .NET Aspire workload)
22+
- **.NET 10 SDK** or later (with Aspire workload)
2323
- **Docker Desktop** or Podman (OCI-compliant container runtime)
2424
- **Aspire CLI** (for publishing and deployment)
2525

@@ -65,7 +65,7 @@ kubectl cluster-info
6565

6666
## Deployment to Azure Container Apps
6767

68-
Azure Container Apps (ACA) is the recommended hosting environment for .NET Aspire applications, providing a fully managed, serverless platform for containerized microservices.
68+
Azure Container Apps (ACA) is the recommended hosting environment for Aspire applications, providing a fully managed, serverless platform for containerized microservices.
6969

7070
### Step 1: Initialize Azure Deployment
7171

@@ -791,7 +791,7 @@ jobs:
791791
792792
## Additional Resources
793793
794-
- [.NET Aspire Deployment Overview](https://learn.microsoft.com/dotnet/aspire/deployment/overview)
794+
- [Aspire Deployment Overview](https://learn.microsoft.com/dotnet/aspire/deployment/overview)
795795
- [Deploy to Azure Container Apps](https://learn.microsoft.com/dotnet/aspire/deployment/azure/aca-deployment)
796796
- [Azure Developer CLI Reference](https://learn.microsoft.com/azure/developer/azure-developer-cli/reference)
797797
- [Aspire.Hosting.Kubernetes Package](https://www.nuget.org/packages/Aspire.Hosting.Kubernetes)

docs/aspire-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# .NET Aspire Orchestration Guide
1+
# Aspire Orchestration Guide
22

3-
This guide explains how the BookStore solution uses **.NET Aspire** to orchestrate distributed services, manage local development resources, and simplify cloud-native application composition.
3+
This guide explains how the BookStore solution uses **Aspire** to orchestrate distributed services, manage local development resources, and simplify cloud-native application composition.
44

55
## Overview
66

@@ -9,7 +9,7 @@ The BookStore solution is built as a distributed system composed of:
99
2. **Web Frontend**: Blazor interactive UI
1010
3. **Infrastructure**: PostgreSQL, Redis, and Azure Blob Storage
1111

12-
.NET Aspire serves as the glue that binds these components together, handling:
12+
Aspire serves as the glue that binds these components together, handling:
1313
- **Service Discovery**: Automatically injecting connection strings and service URLs.
1414
- **Resource Management**: Spinning up containers for databases and emulators during development.
1515
- **Observability**: Providing a unified dashboard for logs, traces, and metrics.

docs/caching-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Caching Guide
22

3-
This guide explains how to configure and use caching in the BookStore API, specifically focusing on the hybrid caching strategy integrated with .NET Aspire and localization.
3+
This guide explains how to configure and use caching in the BookStore API, specifically focusing on the hybrid caching strategy integrated with Aspire and localization.
44

55
## Overview
66

7-
The BookStore API uses **Hybrid Caching** (`HybridCache`), enriched by **.NET Aspire** for seamless distributed cache orchestration.
7+
The BookStore API uses **Hybrid Caching** (`HybridCache`), enriched by **Aspire** for seamless distributed cache orchestration.
88

99
**Components:**
1010
- **L1 Cache (In-Memory)**: Local, fast access.
@@ -16,7 +16,7 @@ The BookStore API uses **Hybrid Caching** (`HybridCache`), enriched by **.NET As
1616

1717
### Aspire Orchestration
1818

19-
The caching infrastructure is automatically wired up by .NET Aspire.
19+
The caching infrastructure is automatically wired up by Aspire.
2020

2121
1. **AppHost**: Declares the Redis resource.
2222
```csharp

docs/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Getting Started with Book Store
22

3-
This guide will help you set up and run the complete Book Store application (frontend + backend) on your local machine using .NET Aspire.
3+
This guide will help you set up and run the complete Book Store application (frontend + backend) on your local machine using **Aspire**.
44

55
## Prerequisites
66

77
### Required Software
88

99
- **.NET 10 SDK** - [Download](https://dotnet.microsoft.com/download/dotnet/10.0)
1010
- Includes **C# 14** with latest language features (collection expressions, primary constructors, etc.)
11-
- **.NET Aspire workload** - Install after .NET SDK:
11+
- **Aspire workload** - Install after .NET SDK:
1212
```bash
1313
dotnet workload install aspire
1414
```
@@ -52,7 +52,7 @@ aspire run
5252
```
5353

5454
This will:
55-
- Start the .NET Aspire orchestrator
55+
- Start the **Aspire** orchestrator
5656
- Launch PostgreSQL and PgAdmin containers via Docker
5757
- Start the backend API service
5858
- Start the Blazor web frontend

0 commit comments

Comments
 (0)