question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

WebJobs SDK version used by portal

See original GitHub issue

Trying 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:closed
  • Created 7 years ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
fabiocavcommented, Jan 5, 2017

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.

0reactions
christopherandersoncommented, Jan 9, 2017

Closing as the question is resolved

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found