Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #963

Merged
merged 3 commits into from
Feb 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 8 additions & 7 deletions state_management/csharp/sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ This section shows how to run applications at once using [multi-app run template
name: Install Dotnet dependencies
-->

```bash
dotnet restore
Copy link
Contributor

Choose a reason for hiding this comment

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

The test was failing because the dotnet build was not happening in order-processor subfolder. You could either set the working directory or cd into it.

However your simplification of restore and build made me think we should just further simplify. Dotnet language tools do a restore and build on run. So let's go straight to the run, which is done as a part of dapr run -f ..

dotnet build
```
```bash
dotnet build
```

<!-- END_STEP -->

Expand All @@ -39,13 +38,13 @@ sleep: 100
-->

```bash
paulyuk marked this conversation as resolved.
Show resolved Hide resolved
dapr run -f .
dapr run -f .
```

3. Stop and clean up application processes

```bash
dapr stop -f .
dapr stop -f .
```
<!-- END_STEP -->

Expand Down Expand Up @@ -90,5 +89,7 @@ You're up and running! Both Dapr and your app logs will appear here.

2. Stop and clean up application processes

```bash
dapr stop --app-id order-processor
<!-- END_STEP -->
```
paulyuk marked this conversation as resolved.
Show resolved Hide resolved
<!-- END_STEP -->