.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

51 lines
1.7 KiB

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Generate model.json",
"detail": "for editing the template, script or styles in inner dev loop of the HTML diagrammer",
"group": "build",
"type": "shell",
"command": [
"if (Test-Path '../bin/Release/net8.0/netAmermaid.exe') {",
" ../bin/Release/net8.0/netAmermaid.exe -a ../bin/Release/net8.0/netAmermaid.dll -n NetAmermaid System -j -o .",
"} else {",
" Write-Host 'netAmermaid.exe Release build not found. Please build it first.';",
" exit 1",
"}"
],
"problemMatcher": []
},
{
"label": "Transpile .less",
"detail": "into .css files",
"group": "build",
"type": "gulp",
"task": "transpileLess",
"problemMatcher": [
"$lessc"
]
},
{
"label": "Generate HTML diagrammer",
"detail": "from the template.html and a model.json",
"group": "build",
"type": "gulp",
"task": "generateHtmlDiagrammer",
"problemMatcher": [
"$gulp-tsc"
]
},
{
"label": "Auto-rebuild on change",
"detail": "run build tasks automatically when source files change",
"type": "gulp",
"task": "autoRebuildOnChange",
"problemMatcher": [
"$gulp-tsc"
]
}
]
}