Skip to content

Instantly share code, notes, and snippets.

@wachulski
Created March 22, 2019 11:11
Show Gist options
  • Save wachulski/ebaddc50789622d7e4b30099096a700c to your computer and use it in GitHub Desktop.
Save wachulski/ebaddc50789622d7e4b30099096a700c to your computer and use it in GitHub Desktop.
Script automation that lists all libraries and dependencies used in a .NET project
Get-ChildItem @("packages.config", "package.json") -Recurse | %{ @($_.FullName, (Get-Content $_.FullName)) } | Out-File results.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment