Phillip Hoff

Results 141 comments of Phillip Hoff

I've added some additional notes to the issue and plans for goring forward, and updated the 1.14 RC release notes to directly state the deprecation of .NET 7 targeting.

@DeafMan1983 Is your question specifically related to Dapr in some way or is it more generally directed at the .NET runtime? If the latter, you may find more help in...

Here's an example for how the error information can be extracted, today, with Dapr v1.13: ```csharp using Dapr; using Dapr.Client; using Grpc.Core; var client = new DaprClientBuilder() .UseHttpEndpoint(/* ... */)...

Here's a proposed API for how extended error info should be obtained by users: - The starting point would be a method `TryGetExtendedErrorInfo()` exposed directly from `DaprException` or as an...

I assume you mean that we should remove the package reference to `System.Net.Http.Json` in the `Dapr.Client` assembly?

There's *what's here now* and *what I'd like to get to* given sufficient time. What's here now is that, except for the dynamic configuration of "generic" in-memory state store and...

This is probably better asked in [dapr/components-contrib](https://github.com/dapr/components-contrib) as it's unlikely to be specific to the .NET SDK. That said, the Dapr state store query API is considered to be in...

@ekjuanrejon You can control the `content-type` associated to the blob by setting the `contentType` metadata when invoking the binding. ```csharp using Dapr.Client; var daprClient = new DaprClientBuilder().Build(); Console.WriteLine("Invoking binding..."); await...

This is unlikely to be an SDK issue as opposed to a Kubernetes and/or Dapr secrets configuration one. So the same application, accessing the same secret store, can successfully retrieve...

@WillPilgrim This would be a good issue for the [dapr/components-contrib](https://github.com/dapr/components-contrib) repo as it'd likely need to be something that was done per-pub-sub component.