dotnet-sdk icon indicating copy to clipboard operation
dotnet-sdk copied to clipboard

Dapr SDK for .NET

Results 355 dotnet-sdk issues
Sort by recently updated
recently updated
newest added

# Description PR dapr/dapr#4989 (issue dapr/dapr#4988) updated the names of some enums in `UnlockResponse.Status` ProtoBuff definition: * `LOCK_UNEXIST` became `LOCK_DOES_NOT_EXIST ` * `LOCK_BELONG_TO_OTHERS` became `LOCK_BELONGS_TO_OTHERS` Code in clients SDKs needs...

Closes https://github.com/dapr/dotnet-sdk/issues/897 Signed-off-by: Yash Nisar # Description Add support for dead letter topic for the dotnet sdk ## Issue reference We strive to have all PR being opened based on...

Signed-off-by: Amulya Varote # Description Added a method that gives line number and the method name for the actor invocation. ## Issue reference We strive to have all PR being...

Currently it looks like PublishEventAsync always serializes event data into json and encode in utf8 bytes. This becomes inefficient if the application already has data in bytes format. Today the...

This PR is a suggestion. Please review and comment; I am glad to update or fix anything you see fit. This suggestion would make `Dapr.Client` usable by a `net48` project;...

Is there any reason this project is not compiled against `netstandard2.0` ? I checked all the dependencies, and they would all be compatible with `netstandard2.0` this would enable us to...

# Description This commit adds support for the shutdown API. It also adds docs for that method and a few others which were missing from the docs. https://github.com/dapr/dotnet-sdk/issues/914 Signed-off-by: Hal...

## Expected Behavior When using Dapr with Kubernetes Job it is advised by the documentation that we should call the shutdown endpoint either using the Dapr SDK or using the...

kind/bug
good first issue
area/client
kind/enhancement-runtime-dependency

I add custom serializers for DateOnly and TimeOnly ``` type DateOnlyConverter() = inherit JsonConverter() override __.Read(reader: byref, _, _) = DateOnly.Parse(reader.GetString()) override __.Write(writer: Utf8JsonWriter, value: DateOnly, _) = writer.WriteStringValue(value.ToString("yyyy-MM-dd")) type...

kind/bug

PR dapr/dapr#4989 (issue dapr/dapr#4988) updated the names of some enums in `UnlockResponse.Status` ProtoBuff definition: * `LOCK_UNEXIST` became `LOCK_DOES_NOT_EXIST ` * `LOCK_BELONG_TO_OTHERS` became `LOCK_BELONGS_TO_OTHERS` Code in clients SDKs needs to be...

kind/bug