I'm running dapr 1.10.0 version, it's started using this command:
dapr run --components-path components --app-port 5067 --app-id auditing-example-app --app-protocol http --dapr-http-port 3500 -- dotnet run
However when I use the Dapr client to publish my events like this:
await _client.PublishEventAsync("test", "test", myCommandObject);
It throws a runtime exception saying:
failed to proxy request: required metadata dapr-app-id not found
What am I missing?