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.

Problem installing 8.1 to a .NET Standard class library

See original GitHub issue

I can’t seem to install WindowsAzure.Storage 8.1 to a .NET Standard 1.6 class library. It complains that: Package System.Linq.Queryable 4.0.0 is not compatible with netstandard1.6 (.NETStandard,Version=v1.6).

However, System.Linq.Queryable version 4.3.0 seems to support .NET Standard.

It works fine if I install WindowsAzure.Storage to a netcore class library since System.Linq.Queryable 4.0.0 supports it.

The System.Linq.Queryable dependency seems to be coming from the Microsoft.Data.Services.Client package.

https://www.nuget.org/packages/Microsoft.Data.Services.Client/ System.Linq.Queryable (>= 4.0.0)

I’m using the latest Visual Studo 2017 RC and started a new .NET Standard class library. I believe I have the latest tooling.

Thanks.

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:10 (2 by maintainers)

github_iconTop GitHub Comments

2reactions
TheRubblecommented, Feb 18, 2017

I’m working around this at the moment, by installing System.Linq.Queryable before installing windowsazure.storage.

1reaction
erezvani1529commented, Feb 21, 2017

Hi @raRaRa, @TheRubble,

Thanks for sharing your work-around and results. (Another workaround is the same old imports statement). What we are doing to fix the problem: we are going to work with ODataLib team to fix their dependency issue. However, since we do not want to block our users depending on another team, we have verified that we can remove this dependency from our netstandard support and will be able to release a fix for this issue in next few days. (versioned 8.1.1)

I will update once the package is ready and published.

Thanks again, Elham

Read more comments on GitHub >

github_iconTop Results From Across the Web

NET Standard
NET Standard is versioned. Each new version adds more APIs. When a library is built against a certain version of .NET Standard, it...
Read more >
Cannot add audio resource to .NET Standard 2.0 project
NET Framework codebase, and I'm trying to port that to .NET Core. As part of the process, I'm converting my class libraries to...
Read more >
Upgrading class library project to .net standard 2.1 where ...
Solution for this issue is to downgrade common library project to .NET Standard 1.1 , other app projects should be able to link...
Read more >
Understanding the .NET ecosystem: The introduction of . ...
In this article, previously part of my new book, we look at .NET Standard, look at why it was created, and discuss its...
Read more >
Intro to .NET Standard - YouTube
For example, the Class Library project type now has a . NET ... using Standard library in a project 18:08 - comparability issues...
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