CLI tool that outputs all resources used within a solution resources as a csv
!
npm install -g sln-resources
sln-resources [path]
Relative path to .sln
Outputs .csv
containing with the following format:
resource name, size (in bytes), resource path
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.