apim-policy-utils
Version:
An XML file scripts maniputaling and debugging tool targeting to help working with Azure APIM Policy files in xml format.
38 lines • 1.17 kB
JSON
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug node script",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/bin/index.js",
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"args": [
"-c",
"scripts"
]
},
{
"name": "Debug .NET Script",
"type": "coreclr",
"request": "launch",
"program": "dotnet",
"args": [
"exec",
"${userHome}/.dotnet/tools/.store/dotnet-script/1.4.0/dotnet-script/1.4.0/tools/net7.0/any/dotnet-script.dll",
"${file}",
"${fileDirname}"
],
"cwd": "${workspaceRoot}",
"stopAtEntry": false
}
]
}