Skip to content

Commit 4952712

Browse files
authored
Remove ".NET" from Aspire references (#5968)
* chore: update Aspire references for consistency across documentation and templates * chore: update comment for consistency in Aspire service documentation
1 parent ec2a89d commit 4952712

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

.claude/docs/project-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
| `TUnit.Assertions.FSharp` | F# assertion extensions |
1919
| `TUnit.AspNetCore` | ASP.NET Core integration |
2020
| `TUnit.AspNetCore.Analyzers` | ASP.NET Core-specific analyzers |
21-
| `TUnit.Aspire` | .NET Aspire integration |
21+
| `TUnit.Aspire` | Aspire integration |
2222
| `TUnit.Logging.Microsoft` | Microsoft.Extensions.Logging integration (no ASP.NET Core dependency) |
2323
| `TUnit.PropertyTesting` | Property-based testing |
2424
| `TUnit.FsCheck` | F#-based property testing integration |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ See the [documentation](https://tunit.dev/docs/getting-started/attributes) for m
144144
| `TUnit.Mocks.Http` | `HttpClient` mocking helpers built on `TUnit.Mocks` |
145145
| `TUnit.Mocks.Logging` | `ILogger` capture/verification helpers built on `TUnit.Mocks` |
146146
| `TUnit.AspNetCore` | ASP.NET Core integration — `WebApplicationFactory`-based test fixtures |
147-
| `TUnit.Aspire` | .NET Aspire integration — distributed app host fixtures with OpenTelemetry capture |
147+
| `TUnit.Aspire` | Aspire integration — distributed app host fixtures with OpenTelemetry capture |
148148
| `TUnit.Playwright` | Playwright integration with automatic browser lifecycle management |
149149

150150
## Migrating from xUnit, NUnit, or MSTest?

TUnit.Templates.Tests/Snapshots/InstantiationTest.TUnit.Aspire.Starter._.verified/TUnit.Aspire.Starter/TUnit.Aspire.Starter.ServiceDefaults/Extensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace TUnit.Aspire.Starter.ServiceDefaults;
1212

13-
// Adds common .NET Aspire services: service discovery, resilience, health checks, and OpenTelemetry.
13+
// Adds common Aspire services: service discovery, resilience, health checks, and OpenTelemetry.
1414
// This project should be referenced by each service project in your solution.
1515
// To learn more about using this project, see https://aka.ms/dotnet/aspire/service-defaults
1616
public static class Extensions

TUnit.Templates/content/TUnit.Aspire.Starter/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"Asp",
99
"ASP.NET",
1010
"Blazor",
11-
".NET Aspire",
11+
"Aspire",
1212
"Cloud",
1313
"Playwright"
1414
],

TUnit.Templates/content/TUnit.Aspire.Starter/ExampleNamespace.ServiceDefaults/Extensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace ExampleNamespace.ServiceDefaults;
1212

13-
// Adds common .NET Aspire services: service discovery, resilience, health checks, and OpenTelemetry.
13+
// Adds common Aspire services: service discovery, resilience, health checks, and OpenTelemetry.
1414
// This project should be referenced by each service project in your solution.
1515
// To learn more about using this project, see https://aka.ms/dotnet/aspire/service-defaults
1616
public static class Extensions

TUnit.Templates/content/TUnit.Aspire.Test/.template.config/template.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"$schema": "http://json.schemastore.org/template",
33
"author": "Tom Longhurst",
4-
"description": "A project that contains TUnit integration tests of a .NET Aspire app host project.",
4+
"description": "A project that contains TUnit integration tests of an Aspire app host project.",
55
"classifications": [
66
"Common",
77
"Test",
88
"TUnit",
9-
".NET Aspire",
9+
"Aspire",
1010
"Cloud"
1111
],
1212
"name": "TUnit Aspire Test Project",

docs/docs/examples/aspire.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Aspire Integration Testing
22

3-
TUnit provides first-class support for [.NET Aspire](https://aspire.dev/get-started/what-is-aspire/) integration testing through the `TUnit.Aspire` package. This package eliminates the boilerplate of managing an Aspire distributed application in tests, handling the full lifecycle (build, start, wait for resources, stop, dispose) automatically.
3+
TUnit provides first-class support for [Aspire](https://aspire.dev/get-started/what-is-aspire/) integration testing through the `TUnit.Aspire` package. This package eliminates the boilerplate of managing an Aspire distributed application in tests, handling the full lifecycle (build, start, wait for resources, stop, dispose) automatically.
44

55
## Installation
66

0 commit comments

Comments
 (0)