I'm working on relatively big solution with many projects in it. Almost each project has dependencies on some nuget packages. In the output folder bit/debug/net6.0
of startup project I have found BouncyCastle.Crypto.dll
and I would like to find out where it's comming from.
I have checked all the project files but there is no references to BouncyCastle.Crypto
neither any reference in any of .cs
files. So it must be a transient dependency.
Question is there easy way to find out nuget package from which this DLL is comming?Is there is UI for it e.g. in Visual Studio / Resharper or if there is some command for dotnet
CLI?