Problem installing 8.1 to a .NET Standard class library
See original GitHub issueI 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:
- Created 7 years ago
- Comments:10 (2 by maintainers)
Top 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 >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
I’m working around this at the moment, by installing System.Linq.Queryable before installing windowsazure.storage.
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