Skip to content

Commit 3ae53e3

Browse files
committed
Update readme section title
1 parent c5a3085 commit 3ae53e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/ExternalExtensionProject/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ For most customers, this inner-build process is frictionless and requires no cus
1414

1515
There is a major drawback though: ensuring the extension project builds a *valid* payload is now the customer's responsibility. Failures to build a valid payload will only be discovered at runtime. Issues may be obscure and varied, from assembly load failures, method missing exceptions, to odd behavior due to mismatching worker & webjobs extensions. Any time the set of extensions for the function app changes, this external project will need to be manually updated. As such, this scenario is only recommended if customization is **absolutely** necessary.
1616

17-
## How
17+
## How to use external extension project feature
1818

1919
### 1. Prepare the project for external extension
2020
Add the follow item to your csproj:
@@ -29,7 +29,7 @@ Add the follow item to your csproj:
2929
</PropertyGroup>
3030

3131
+ <ItemGroup>
32-
+ <ProjectReference Include="{{path-to-extension-csproj}}" ReferenceOutputAssembly="false" WorkerExtensions="false" />
32+
+ <ProjectReference Include="{{path-to-extension-csproj}}" ReferenceOutputAssembly="false" WorkerExtensions="true" />
3333
+ </ItemGroup>
3434

3535
<!-- rest of csproj -->

0 commit comments

Comments
 (0)