-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dotnet list package
supports showing package dependencies declared in packages.config
#8209
Comments
|
Thx.
|
We hope to ship dotnet list package support for packages.config as early as NuGet 5.2. |
dotnet list package
supports showing package dependencies declared in packages.config
Any update on this after 3 years? The inconsistency in tooling between PackageReference and packages.config is a still a big frustration after all these time |
even more so if C++ projects with nugets via |
Hello.
I want to make solution verifier to nuget dependencies in C# app.
If we have projects whats compile to one folder, and
ProjectA -> PackageName 1.0.0
ProjectB -> PackageName 2.0.0
In output folder we get only one .dll, and its may to runtime exception when one of projects try use some method in PackageName with other project version. (Like ProjectB use PackageName 1.0.0)
I want to build full dependencies graph for all project in solution and verify it before build and run my program.
How can i do this?
I can manually parse .csproj for packets, and go to .nuspec of each packages, get dependencies, and build tree manually, with comparing nuspec framework dependencies and .csproj framework, but i think there is a more correct way.
The text was updated successfully, but these errors were encountered: