-
Notifications
You must be signed in to change notification settings - Fork 188
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is the correct way to install a local WebJobs extensions library? #2903
Comments
@manvkaur in-process worker shouldn't need anything special: from your function app have a project reference to your WebJobs extension |
@Y-Sindo - Would you be able to test your function app using in-process application to unblock yourself? |
@manvkaur The code paths for in-process and isolated-process application are different. I can test the isolated-process code path in JS function app, but I'm not sure whether there is anything different between JS and dotnet isolated worker model. And there is scenario that I need to the test unique functionality in the dotnet isolated process. |
@Y-Sindo I should clarify my comment is more for automating of testing. If you just need to manually test, you have a few options:
|
Hello @jviau , I have tried the option 1 but failed with the message "Please ensure the type is correct and the binding extension is installed". Is there any method to troubleshoot the issue? I have transitive dependency updated in webjobs package, so it's not easy to make sure they are all manually corrected replaced in the |
Description
I need to test my local WebJobs extensions library in dotnet worker.
The previously working way now is not working. I've got extensions not registered error like this:
In Azure JS Functions project, it's easy to install a local WebJobs extensions. We just add an
extensions.csproj
file to the project like:What is the correct way to test a local WebJobs extensions library now? @jviau , @fabiocav
The text was updated successfully, but these errors were encountered: