update with dotnet run example.

This commit is contained in:
Mukundan Sundararajan 2020-12-11 16:11:49 -08:00 committed by GitHub
parent fc2dbda005
commit f7abcf72d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -17,6 +17,12 @@ dapr run [flags] [command]
## Examples
### Run a .NET application
```bash
dapr run --app-id myapp --app-port 5000 -- dotnet run
```
### Run a Java application
```bash