Created
March 22, 2019 11:11
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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