Automatically create list of nuget packages and licenses

Viewed 3932

Is there any way to get an automatically updated list of all used nuget packages in my solution, including a link to the corresponding license, which I can display within my app?

Running the following from Package Manager Console within Visual Studio gives me the required information:

Get-Project | Get-Package | select Id, Version, LicenseUrl 

How to get this list a) automatically updated on each change and b) get it into my app?

Target is to have an Info/About dialog showing all this data.

2 Answers
Related