You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
<ImplicitUsings>enable</ImplicitUsings>
The text was updated successfully, but these errors were encountered:
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>
The text was updated successfully, but these errors were encountered: