Skip to content

Commit

Permalink
Update ReadMe.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aabs authored Apr 29, 2024
1 parent 301fcb5 commit f2b151b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ provide feedback, helping you ensure a smooth integration process.

## How Do You Use It?

It's remarkably easy to use ActorSrcGen to inject pipeline processing code into your project.
It's really easy to use ActorSrcGen to inject pipeline processing code into your project.

1. Install the Nuget Package into your project
```shell
dotnet add package ActorSrcGen --version 0.3.5
dotnet add package ActorSrcGen --version 1.0.2
```

1. Adorn your actor class with the Actor Attribute
Expand All @@ -40,7 +40,7 @@ It's remarkably easy to use ActorSrcGen to inject pipeline processing code into

2. Define the initial starting step of your pipeline, being sure to indicate what step comes next
```csharp
[FirstStep]
[FirstStep("SomeName")]
[NextStep(nameof(DecodeMsg))]
[NextStep(nameof(LogMsg))]
public string ReceiveMsgFromSomewhere(string x){ . . . }
Expand Down

0 comments on commit f2b151b

Please sign in to comment.