fp-jcorriveau
fp-jcorriveau
https://github.com/Azure/azure-service-bus/issues/652
> For what it's worth, it looks like updating `System.Diagnostics.DiagnosticSource` to 6.0.0 may have resolved this for us. That version is compatible with both older .NET Framework and .NET Core...
Disabling Azure Toolkit for Rider does nothing. But updating System.Diagnostics.DiagnosticSource to 6.0.0 fixed the issue for me!
I don't have the problem when using `.WithResult` along with the attribute `[TranslateResultToActionResult]` instead of `.WithActionResult` and `ToActionResult` ```c# // Fails public class MyEndpoint : EndpointBaseAsync.WithoutRequest.WithActionResult { [HttpPost("/api/my-endpoint")] [ProducesResponseType(StatusCodes.Status200OK)] public...