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.

Microsoft.Azure.WebJobs.Extensions 3.0.5 depends on Microsoft.Azure.WebJobs.Host.Storage (>= 3.0.11)

See original GitHub issue

I seem to be getting a warning that a package is not found on nuget, which also seems to be the case.

The exact error is:

warning NU1603: Microsoft.Azure.WebJobs.Extensions 3.0.5 depends on Microsoft.Azure.WebJobs.Host.Storage (>= 3.0.11) but Microsoft.Azure.WebJobs.Host.Storage 3.0.11 was not found. An approximate best match of Microsoft.Azure.WebJobs.Host.Storage 3.0.13 was resolved.

Whenever i’m using azure functions sdk with version 1.0.3x which depends on the webjobs sdk, i keep getting this warning. If i backtrack on nuget.org, i see that indeed the Azure functions sdk depends on Microsoft.Azure.WebJobs.Extensions 3.0.5 and that that one in turn depends on Microsoft.Azure.WebJobs.Host.Storage (>= 3.0.11). However 3.0.11 does not exist. there seems to be a gap between Microsoft.Azure.WebJobs.Host.Storage 3.0.8 and Microsoft.Azure.WebJobs.Host.Storage 3.0.13 so it resolves the 3.0.13 version. Is this an issue? i assume it’s all backwards compatible since its a patch version but i just want to check why there is a dependency to a version that does not exist?

  <PropertyGroup>
    <TargetFramework>netcoreapp2.1</TargetFramework>
    <AzureFunctionsVersion>v2</AzureFunctionsVersion>
  </PropertyGroup>
  <ItemGroup>
 <PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.3x" />
  </ItemGroup>

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Reactions:1
  • Comments:7 (2 by maintainers)

github_iconTop GitHub Comments

5reactions
AtOMiCNebulacommented, Jan 3, 2020

It is >= 3.0.11, but NuGet picks the lowest version it can based on criteria instead of then newest. You really don’t want your build to pass one day and fail the next just because some new sub-dependency was released and you haven’t had a chance to validate. This is just NuGet letting you know that something is amiss.

I added an explicit reference to v3.0.14 to work around this (which was needed, since my CI pipeline treats warnings as errors, so this was blocking).

3reactions
kashimizcommented, Jan 29, 2020

Microsoft.Azure.WebJobs.Extensions v3.0.6 is now available on NuGet. This version references Microsoft.Azure.WebJobs.Host.Storage (>= 3.0.14).

Read more comments on GitHub >

github_iconTop Results From Across the Web

Microsoft.Azure.WebJobs.Extensions.Storage 3.0.11
Microsoft.Azure.WebJobs.Extensions.Storage 3.0.11 ... Storage --version 3.0.11 ... README; Frameworks; Dependencies; Used By; Versions.
Read more >
Microsoft.Azure.WebJobs.Extensions.Storage 5.1.3
This extension provides functionality for accessing Azure Storage Blobs and Queues in Azure Functions. This package is a metapackage created for backwards ...
Read more >
Microsoft.Azure.WebJobs.Extensions.Http: Could not load ...
Functions(4.1.3) does cause the issue, but I found another one does as well, so it will depend on what other packages you have...
Read more >
Azure function failing with Microsoft.Azure.WebJobs.Host. ...
Hello all! I have an azure function app that takes messages from the service bus queue and posts them to salesforce.
Read more >
What causes the runtime to try and bind with the lowest ...
I am working on an Azure function project in a Class Library project that targets .NET Standard 2.0. I am using the following...
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