Azure / azure-functions-vs-build-sdk

MSBuild task for Azure Functions
MIT License
95 stars 64 forks source link

Microsoft.NET.Sdk.Functions 3.0.12 drops System.Encodings.Web #517

Open arkiaconsulting opened 3 years ago

arkiaconsulting commented 3 years ago

Bumping Microsoft.NET.Sdk.Functions from 3.0.11 to 3.0.12 drops System.Text.Encodings.Web.dll from the publish folder.

<ItemGroup>
    <PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.11" />
    <PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>
=> System.Text.Encodings.Web.dll present
<ItemGroup>
    <PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.12" />
    <PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>
=> System.Text.Encodings.Web.dll not present

related: https://github.com/Azure/Azure-Functions/issues/1898 https://github.com/dotnet/runtime/issues/52845

wonderplayer commented 3 years ago

Reproducible in 3.0.13

ravibha-hub commented 2 years ago

Any update on this?