When running the Upgrade tool on a dotnet Function App and upgrading from dotnet version 6.0 to version 8.0 the tool will change the <ImplicitUsings> tag on the functions main .csproj file to enabled example.
<ImplicitUsings>enabled</ImplicitUsings>
This actually breaks the ImplicitUsing functionality around the project and makes it so the user has to add in many using values around the application, it should actually be changed to enable (no d).
When running the Upgrade tool on a dotnet Function App and upgrading from dotnet version 6.0 to version 8.0 the tool will change the
<ImplicitUsings>
tag on the functions main.csproj
file toenabled
example.<ImplicitUsings>enabled</ImplicitUsings>
This actually breaks the ImplicitUsing functionality around the project and makes it so the user has to add in many
using
values around the application, it should actually be changed toenable
(nod
).<ImplicitUsings>enable</ImplicitUsings>