Edit

AZFW0110: FunctionsEnableWorkerIndexing is deprecated

Item Value
Rule ID AZFW0110
Category Sdk
Severity Warning

Cause

The FunctionsEnableWorkerIndexing property was set in a project using Azure.Functions.Sdk.

Rule Description

Worker indexing is always enabled with Azure.Functions.Sdk. The FunctionsEnableWorkerIndexing property was used by the legacy Microsoft.Azure.Functions.Worker.Sdk to toggle build-time function indexing, but it no longer has any effect with the new SDK. Setting it has no impact on the build.

How to Fix

Remove the FunctionsEnableWorkerIndexing property from your project file:

  <PropertyGroup>
-   <FunctionsEnableWorkerIndexing>true</FunctionsEnableWorkerIndexing>
  </PropertyGroup>

When to Suppress Warnings

Suppression is not recommended. Remove the property instead, as it no longer has any effect.