mirror of https://github.com/dapr/docs.git
Fixes wrong working directory for dotnet state management sample (#2359)
* Wrong working directory for .Net state management sample The working directory for .NET is pointing to `pub_sub` but it should be `state_management`. Signed-off-by: Stephane Lapointe <stephane.lap@outlook.com> * Removing the word "publisher" which was also unneed Co-authored-by: Mark Fussell <markfussell@gmail.com>
This commit is contained in:
parent
750231fca5
commit
cc8a2770ed
|
|
@ -285,7 +285,7 @@ git clone https://github.com/dapr/quickstarts.git
|
||||||
In a terminal window, navigate to the `order-processor` directory.
|
In a terminal window, navigate to the `order-processor` directory.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cd pub_sub/csharp/sdk/order-processor
|
cd state_management/csharp/sdk/order-processor
|
||||||
```
|
```
|
||||||
|
|
||||||
Recall NuGet packages:
|
Recall NuGet packages:
|
||||||
|
|
@ -414,7 +414,7 @@ Install the dependencies:
|
||||||
mvn clean install
|
mvn clean install
|
||||||
```
|
```
|
||||||
|
|
||||||
Run the `order-processor` publisher service alongside a Dapr sidecar.
|
Run the `order-processor` service alongside a Dapr sidecar.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
dapr run --app-id order-processor --components-path ../../../components -- java -jar target/order-processor-0.0.1-SNAPSHOT.jar
|
dapr run --app-id order-processor --components-path ../../../components -- java -jar target/order-processor-0.0.1-SNAPSHOT.jar
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue