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
6 changes: 3 additions & 3 deletions modules/dapr/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ docs:
</dependency>
```
- id: dotnet
url: https://github.com/dapr/dotnet-sdk/tree/master/src/Dapr.TestContainers
url: https://github.com/dapr/dotnet-sdk/tree/master/src/Dapr.Testcontainers
maintainer: community
example: |
```csharp
var options = new DaprRuntimeOptions("1.16.0");
var options = new DaprRuntimeOptions(); // Defaults to the latest version, or provide a specific version to use
var componentsDirectory = Path.Combine(Directory.GetCurrentDirectory());
var harness = new DaprHarnessBuilder(options).BuildJobs(componentsDirectory);
await using var testApp = await DaprHarnessBuilder.ForHarness(harness)
Expand All @@ -38,7 +38,7 @@ docs:
```
installation: |
```bash
dotnet add package Dapr.TestContainers
dotnet add package Dapr.Testcontainers
```
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.
Expand Down