Skip to content

Commit 31d2609

Browse files
Copilotjfversluis
andcommitted
Replace '.NET Aspire' with 'Aspire' throughout documentation
Co-authored-by: jfversluis <939291+jfversluis@users.noreply.github.com>
1 parent 3424da1 commit 31d2609

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

docs/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1236,7 +1236,7 @@
12361236
items:
12371237
- name: Consume a REST-based web service
12381238
href: data-cloud/rest.md
1239-
- name: .NET MAUI integration with .NET Aspire
1239+
- name: .NET MAUI integration with Aspire
12401240
href: data-cloud/aspire-integration.md
12411241
- name: Connect to local web services
12421242
href: data-cloud/local-web-services.md

docs/data-cloud/aspire-integration.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
---
2-
title: ".NET MAUI integration with .NET Aspire"
3-
description: "Learn how to use .NET Aspire to simplify connecting your .NET MAUI app to local web services during development."
2+
title: ".NET MAUI integration with Aspire"
3+
description: "Learn how to use Aspire to simplify connecting your .NET MAUI app to local web services during development."
44
ms.date: 10/31/2024
55
---
66

7-
# .NET MAUI integration with .NET Aspire
7+
# .NET MAUI integration with Aspire
88

99
::: moniker range=">=net-maui-10.0"
1010

1111
> [!IMPORTANT]
1212
> This feature is currently in preview. Integration with Visual Studio 2026 is coming but not completely available yet.
1313
14-
.NET Aspire is an opinionated, cloud-ready stack for building observable, production-ready, distributed applications. The .NET MAUI integration with .NET Aspire simplifies the development experience when building mobile and desktop applications that connect to local web services during development.
14+
Aspire is an opinionated, cloud-ready stack for building observable, production-ready, distributed applications. The .NET MAUI integration with Aspire simplifies the development experience when building mobile and desktop applications that connect to local web services during development.
1515

16-
## What is .NET Aspire?
16+
## What is Aspire?
1717

18-
.NET Aspire provides a consistent, opinionated set of tools and patterns for building and running distributed applications. It's designed to improve the experience of building cloud-native applications by providing:
18+
Aspire provides a consistent, opinionated set of tools and patterns for building and running distributed applications. It's designed to improve the experience of building cloud-native applications by providing:
1919

2020
- **Orchestration**: Simplified management of multiple services and dependencies
2121
- **Components**: Pre-built integrations for common services and platforms
2222
- **Tooling**: Developer dashboard for monitoring and managing services
2323
- **Service discovery**: Automatic configuration for service-to-service communication
2424

25-
For more information about .NET Aspire, see [.NET Aspire documentation](/dotnet/aspire/).
25+
For more information about Aspire, see [Aspire documentation](/dotnet/aspire/).
2626

2727
## Benefits of using Aspire with .NET MAUI
2828

29-
Integrating .NET Aspire with your .NET MAUI applications provides several key benefits:
29+
Integrating Aspire with your .NET MAUI applications provides several key benefits:
3030

3131
- **Simplified configuration**: Eliminate complex platform-specific networking configuration. No need to manually handle `10.0.2.2` for Android or deal with certificate validation issues.
3232
- **Automatic service discovery**: Your MAUI app automatically discovers and connects to local services without hardcoded URLs.
@@ -46,26 +46,26 @@ Traditionally, connecting a .NET MAUI app to local web services requires signifi
4646

4747
For more information about the traditional approach, see [Connect to local web services](local-web-services.md).
4848

49-
With .NET Aspire integration, these complexities are handled automatically, allowing you to focus on building your application instead of configuring network access.
49+
With Aspire integration, these complexities are handled automatically, allowing you to focus on building your application instead of configuring network access.
5050

5151
## Prerequisites
5252

53-
To use .NET Aspire with .NET MAUI, you need:
53+
To use Aspire with .NET MAUI, you need:
5454

5555
- [.NET 10 SDK](https://dotnet.microsoft.com/download/dotnet/10.0) or later
56-
- [.NET Aspire workload](/dotnet/aspire/fundamentals/setup-tooling)
56+
- [Aspire workload](/dotnet/aspire/fundamentals/setup-tooling)
5757
- A .NET MAUI app targeting .NET 10 or later
5858
- One or more ASP.NET Core web services
5959

60-
To install the .NET Aspire workload, run:
60+
To install the Aspire workload, run:
6161

6262
```dotnetcli
6363
dotnet workload install aspire
6464
```
6565

6666
## Getting started
6767

68-
Setting up .NET Aspire integration with your .NET MAUI application involves adding two key projects to your solution:
68+
Setting up Aspire integration with your .NET MAUI application involves adding two key projects to your solution:
6969

7070
1. **MAUI Service Defaults project**: Provides default configuration for your MAUI app
7171
2. **App Host project**: Orchestrates your application services and handles service discovery
@@ -319,7 +319,7 @@ When building .NET MAUI apps with Aspire integration:
319319

320320
## Sample application
321321

322-
For a complete working example of .NET MAUI integration with .NET Aspire, see the [AspireWithMaui sample](https://github.com/dotnet/aspire/tree/main/playground/AspireWithMaui) in the .NET Aspire repository.
322+
For a complete working example of .NET MAUI integration with Aspire, see the [AspireWithMaui sample](https://github.com/dotnet/aspire/tree/main/playground/AspireWithMaui) in the Aspire repository.
323323

324324
The sample demonstrates:
325325

@@ -330,15 +330,15 @@ The sample demonstrates:
330330

331331
## Additional resources
332332

333-
- [.NET Aspire documentation](/dotnet/aspire/)
334-
- [Service discovery in .NET Aspire](/dotnet/aspire/service-discovery/overview)
335-
- [.NET Aspire orchestration](/dotnet/aspire/fundamentals/app-host-overview)
333+
- [Aspire documentation](/dotnet/aspire/)
334+
- [Service discovery in Aspire](/dotnet/aspire/service-discovery/overview)
335+
- [Aspire orchestration](/dotnet/aspire/fundamentals/app-host-overview)
336336
- [Connect to local web services (traditional approach)](local-web-services.md)
337337

338338
::: moniker-end
339339

340340
::: moniker range="<net-maui-10.0"
341341

342-
.NET MAUI integration with .NET Aspire is available in .NET MAUI 10 and later. For information about connecting to local web services in earlier versions, see [Connect to local web services](local-web-services.md).
342+
.NET MAUI integration with Aspire is available in .NET MAUI 10 and later. For information about connecting to local web services in earlier versions, see [Connect to local web services](local-web-services.md).
343343

344344
::: moniker-end

docs/data-cloud/local-web-services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 10/07/2024
1111
Many mobile and desktop apps consume web services. During the software development phase, it's common to deploy a web service locally and consume it from an app running in the Android emulator or iOS simulator. This avoids having to deploy the web service to a hosted endpoint, and enables a straightforward debugging experience because both the app and web service are running locally.
1212

1313
> [!TIP]
14-
> If you're using .NET 10 or later, consider using [.NET Aspire integration](aspire-integration.md) to simplify connecting to local web services. Aspire automatically handles platform-specific networking configuration, service discovery, and development tunnels, eliminating much of the manual configuration described in this article.
14+
> If you're using .NET 10 or later, consider using [Aspire integration](aspire-integration.md) to simplify connecting to local web services. Aspire automatically handles platform-specific networking configuration, service discovery, and development tunnels, eliminating much of the manual configuration described in this article.
1515
1616
.NET Multi-platform App UI (.NET MAUI) apps that run on Windows or MacCatalyst can consume ASP.NET Core web services that are running locally over HTTP or HTTPS without any additional work, provided that you've [trusted your development certificate](#trust-your-development-certificate). However, additional work is required when the app is running in the Android emulator or iOS simulator, and the process is different depending on whether the web service is running over HTTP or HTTPS.
1717

0 commit comments

Comments
 (0)