Skip to content

Microsoft.Azure.Functions.Worker.Sdk 1.17.3-preview2

Compare
Choose a tag to compare
@satvu satvu released this 21 May 21:45
· 55 commits to main since this release
25b6105

Microsoft.Azure.Functions.Worker.Sdk 1.17.3-preview2

  • Updating to use Microsoft.NET.Sdk.Functions.Generators 1.3.0 (#2322)
  • Update legacy generator to handle HttpResultAttribute (#2342), which is used on HTTP response properties in multiple output-binding scenarios. Example:
public class MyOutputType
{
    [QueueOutput("myQueue")]
    public string Name { get; set; }

    [HttpResult]
    public IActionResult HttpResponse { get; set; }
}

Microsoft.Azure.Functions.Worker.Sdk.Generators 1.3.0

  • Introduces handling for HttpResultAttribute, which is used on HTTP response properties in multiple output-binding scenarios.
  • Fix bug causing compiler error when named arguments in function attributes are array types (#2344).