Skip to content

Commit

Permalink
DEV added debug launchSettings for generating diagrammer directly
Browse files Browse the repository at this point in the history
  • Loading branch information
h0lg committed Nov 8, 2024
1 parent 1b60045 commit 0bff402
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions ICSharpCode.ILSpyCmd/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"profiles": {
"no args": {
"commandName": "Project",
"commandLineArgs": ""
},
"print help": {
"commandName": "Project",
"commandLineArgs": "--help"
},
"generate diagrammer": {
"commandName": "Project",
// containing all types
"commandLineArgs": "ICSharpCode.Decompiler.dll --generate-diagrammer"

// including types in LightJson namespace while excluding types in nested LightJson.Serialization namespace, matched by what returns System.Type.FullName
//"commandLineArgs": "ICSharpCode.Decompiler.dll --generate-diagrammer --generate-diagrammer-include LightJson\\..+ --generate-diagrammer-exclude LightJson\\.Serialization\\..+"
},
"generate model.json": {
"commandName": "Project",
"commandLineArgs": "ICSharpCode.Decompiler.dll --generate-diagrammer --generate-diagrammer-json-only"
}
}
}

0 comments on commit 0bff402

Please sign in to comment.