System.ValueTuple conflict
See original GitHub issuewarning MSB3268: The primary reference "Quartz.dll" could not be resolved because it has an indirect dependency on the framework assembly "System.ValueTuple, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" which could not be resolved in the currently targeted framework. ".NETFramework,Version=v4.0". To resolve this problem, either remove the reference "Quartz.dll" or retarget your application to a framework version which contains "System.ValueTuple, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51".
due to dependency on System.ValueTuple 4.3.0 in Theraot.Core (3.2.11)
if I add System.ValueTuple 4.5.0 nuget package to the project this error goes away
Issue Analytics
- State:
- Created 2 years ago
- Comments:13 (8 by maintainers)
Top Results From Across the Web
Found conflicts between different versions of "System. ...
When I build I get the following warning: warning MSB3277: Found conflicts between different versions of "System.ValueTuple" that could not be ...
Read more >Could not load file or assembly 'System.ValueTuple'
In the end it turned out to be some sort of conflict between .Net Framework 4.6.1 and me having System.ValueTuple installed from Nuget...
Read more >Found conflicts between different versions of System. ...
I have version 4.4.0 of the System.ValueTuple nuget package installed and no other version of that nuget package installed, but I get this ......
Read more >system.valuetuple in .nuget conflicts with ...
I have a solution that mixes .net standard and .net framework projects. I encountered the following error: 10> Encountered conflict between ...
Read more >Warning "Found conflicts between different versions of the ...
1> No way to resolve conflict between "System.ValueTuple, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" and "System.
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
Repro.zip Here is reproduction To compile remove one of dependencies in
ClassLibrary1
this doesn’t work