P2P references should be transitive
See original GitHub issueExample: Consider the below dependency chain ProjectA-> ProjectB->ProjectC
Here ProjectA depends on ProjectC but build fails with error
C:\Users\sridhper\.nuget\packages\microsoft.netcore.sdk\1.0.0-alpha-20160923-4\build\netstandard1.0\Microsoft.PackageDependencyResolution.targets(142,5): error : Unexpected Dependency D:\github\tryout\TestAppDependencyGraph \ProjectC\ProjectC.csproj with no version number [D:\github\tryout\TestAppDependencyGraph\ProjectA\ProjectA.csproj]
Point of failure is here
cc @eerhardt
Issue Analytics
- State:
- Created 7 years ago
- Comments:19 (14 by maintainers)
Top Results From Across the Web
Enhancing P2P Cooperation through Transitive Indirect ...
The main objective of this paper is to introduce and show some results concerning a novel form of indirect reciprocity, called transitive reciprocity, ......
Read more >Enabling Selective Flooding to Reduce P2P Traffic
Our solution relies on recovering some transitivity behavior in similarity-based P2P information retrieval approaches by considering neighborhood semantic ...
Read more >Enhancing P2P Cooperation through Transitive Indirect ...
The main objective of this paper is to introduce and show some results concerning a novel form of indirect reciprocity, called transitive reciprocity, ......
Read more >The EigenTrust Algorithm for Reputation Management in P2P ...
Our approach is based on the notion of transitive trust: A peer i will have a high opinion of those peers who have...
Read more >EigenTrust
EigenTrust algorithm is a reputation management algorithm for peer-to-peer networks, developed by Sep Kamvar, Mario Schlosser, and Hector Garcia-Molina.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
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
@dasMulli Still, using something like that at unit test time doesn’t stop undesirable interfaces from showing up in IntelliSense at design time. I know I might seem a bit fussy, but if I’m working in my presentation layer, VS shouldn’t be offering me an autocomplete of
IFooRepo
when I only want my presentation layer to access that repository throughIFooService
, at least in an ideal world.Ah looks doable now by removing the correspending
ReferencePathWithRefAssemblies
item in e.g. before BeforeCompile. I may have mixed it up with transitive nuget references for which there initially was no ““easy”” way to remove the reference but keep the copy-local behavior.