sln-resources
v1.0.0
Published
Tool to extract resources contained in a solution
Downloads
1
Readme
Solution Resources
CLI tool that outputs all resources used within a solution resources as a csv
!
Installation
npm install -g sln-resources
Usage
sln-resources [path]
Path
Relative path to .sln
Output
Outputs .csv
containing with the following format:
resource name, size (in bytes), resource path
How it works
This package works by collecting all projects in the Solution, then parsing the .csproj
files to extract any references to <Resource Include="...">
. The size is then collected from each resource and put into csv
format. This package does not collect any data from Nuget packages.