...
Example of Launch.json file for “Attach” debugging:
{ "version": "0.2.0", "configurations": [ { "name": "Microsoft cloud sandbox", "request": "attach", "type": "al", "environmentType": "Sandbox", "environmentName": "NameOfYourSandbox", "breakOnError": true, "breakOnNext": "WebServiceClient", "enableLongRunningSqlStatements": true, "enableSqlInformationDebugger": true, "tenant": "taskletfactory.onmicrosoft.com" or "YourCompany.com" } ] } |
---|
Example of Launch.json file for “Launch” debugging:
{ "version": "0.2.0", "configurations": [ { "name": "Microsoft cloud sandbox", "request": "launch", "type": "al", "environmentType": "Sandbox", "environmentName": " NameOfYourSandbox ", "breakOnError": true, "launchBrowser": true, "enableLongRunningSqlStatements": true, "enableSqlInformationDebugger": true, "tenant": "TaskletfactoryYourCompany.onmicrosoft.com" or "YourCompany.com" } ] } |
---|