I have a question about Nuget and its management.
Let's assume two scenarios here:
I have two Nuget packages A and B in my application. They depend on C which is also a Nuget package, but I don't need to declare the C package in my application.
Scenario 1. A depends on C in version 1.0. B depends on C in version 2.0. How will Nuget handle this situation?
Scenario 2. A depends on C in version 1.0. B depends on C in version 1.0. Can I upgrade package C which is used in package B and for A and rest of the project still version 1.0?
Thanks a lot for all the answers!