list_resources
List all embedded resources in an assembly. This tool reads the ManifestResource metadata table directly using dnfile — no ilspycmd required. Results include the resource name and visibility (public or private).
Parameters
Section titled “Parameters”| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
assembly_path | string | Yes | — | Full path to the .NET assembly (.dll or .exe) |
Example
Section titled “Example”{ "tool": "list_resources", "arguments": { "assembly_path": "/path/to/MyApp.dll" }}result = await client.call_tool("list_resources", { "assembly_path": "/path/to/MyApp.dll",})Response
Section titled “Response”A sorted list of embedded resources, each showing the resource name and its visibility. Results support pagination via max_results and offset parameters.
Related Tools
Section titled “Related Tools”get_metadata_summary— see total resource countsearch_strings— find string literals that may reference resourcesdecompile_assembly— decompile code that loads resources