WebJobs SDK version used by portal
See original GitHub issueTrying to understand what version of WebJobs SDK is used by default by Functions.
Repro steps
Code used to find the webjobs sdk version (could be eliminated so that auto-imported dependency version are discoverable as part of the portal experience - a feature request 😃).
var asm = Assembly.GetAssembly(typeof(Microsoft.Azure.WebJobs.Host.Bindings.IBinding));
var version = FileVersionInfo.GetVersionInfo(asm.Location).FileVersion;
log.Info(version);
Expected behavior
Expected to see the latest stable (1.1.2).
Actual behavior
Reported version is 2.0.0
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
How to use the WebJobs SDK - Azure App Service
Azure Functions version 2.x is built on WebJobs SDK version 3.x. ... Viewing the app's configuration in the Azure portal or making requests ......
Read more >Tutorial: Get started with the Azure WebJobs SDK for event ...
Use this tutorial to get started with the WebJobs SDK. ... Get the latest stable 4.x version of the Microsoft.Azure.WebJobs.
Read more >Microsoft Azure WebJobs SDK
The Azure WebJobs SDK is a framework that simplifies the task of writing ... portal, with rich monitoring and diagnostics information for your...
Read more >How do I get a web job to use the azure portal storage ...
I've created a web job using the webjobs sdk that is linked to my web application. Well it isn't anymore (I removed the...
Read more >Azure Functions - can't be invoked from Azure WebJobs SDK
By default, function apps created in the Azure portal are set to version 2.x. You can only change the runtime version after you...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
2.0.0 is a beta for public consumption since some of the API surface (e.g. binding extensibility, some new features, etc.) is still in flux, not completely finished and likely to see breaking changes.
We manage those changes with the functions runtime internally, and in the context of Azure Functions, you’re covered by the SLAs and support provided by the service.
Closing as the question is resolved