Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions modules/dapr/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,23 @@ docs:
<scope>test</scope>
</dependency>
```
- id: dotnet
url: https://github.com/dapr/dotnet-sdk/tree/master/src/Dapr.TestContainers
maintainer: community
example: |
```csharp
var options = new DaprRuntimeOptions("1.16.0");
var componentsDirectory = Path.Combine(Directory.GetCurrentDirectory());
var harness = new DaprHarnessBuilder(options).BuildJobs(componentsDirectory);
await using var testApp = await DaprHarnessBuilder.ForHarness(harness)
.ConfigureServices(services => {})
.ConfigureApp(app => {})
.BuildAndStartAsync();
```
installation: |
```bash
dotnet add package Dapr.TestContainers
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Testcontainers is a proper noun. It would be great if you could align the name in future releases and drop the capitalized C.

Copy link
Copy Markdown
Contributor Author

@WhitWaldo WhitWaldo Jan 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've asked the person with access to our NuGet account to archive Dapr.TestContainers and will be merging a PR with this change as soon as CICD clears it so future releases properly name this.

I'll open a PR correcting this in this repo once I produce the next NuGet release.

Thank you for the heads up!

```
description: |
Dapr is a CNCF and open-source project that enables developers with consistent application-level APIs to develop secure, scalable, and resilient cloud-native applications.
---