1.0.0 • Published 2 years ago

sln-resources v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

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.