After upgrading my nuget-based project I noticed new build warnings.
warning NU1701: Package 'Microsoft.SqlServer.Types 11.0.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net6.0'. This package may not be fully compatible with your project.
I added a package reference to ensure the newest version of Microsoft.SqlServer.Types library. This is a dependency of Microsoft.Azure.Workflows.WebJobs.Extension. seems like that dependency min version should be bumped up.
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.13"/>
<PackageReference Include="Microsoft.Azure.Workflows.WebJobs.Extension" Version="1.2.*"/>
<PackageReference Include="Microsoft.SqlServer.Types" Version="160.1000.6" />