JeremyYao commented on issue #1027:
URL: 
https://github.com/apache/daffodil-vscode/issues/1027#issuecomment-2851893014

   Let's suppose I have this in my configurations array in launch.json:
   ```JSON
           {
               "request": "launch",
               "type": "dfdl",
               "name": "Cat_DFDL",
               "schema": {
                   "path": 
"${workspaceFolder}/src/main/resources/com/mitre/jpeg/xsd/jpeg.dfdl.xsd",
                   "rootName": null,
                   "rootNamespace": null
               },
               "data": "${workspaceFolder}/test_images/curious-cat-thumb.jpg",
               "debugServer": 4712,
               "infosetFormat": "xml",
               "infosetOutput": {
                   "type": "file",
                   "path": "${workspaceFolder}/target/infoset.xml"
               },
               "tdmlConfig": {
                   "action": "generate",
                   "name": "a",
                   "description": "a",
                   "path": "C:/repos/test"
               },
               "trace": true,
               "stopOnEntry": true,
               "useExistingServer": false,
               "openDataEditor": true,
               "openInfosetView": true,
               "openInfosetDiffView": true,
               "daffodilDebugClasspath": [],
               "dataEditor": {
                   "port": 9000,
                   "logging": {
                       "file": 
"${workspaceFolder}/dataEditor-${omegaEditPort}.log",
                       "level": "info"
                   }
               },
               "dfdlDebugger": {
                   "logging": {
                       "file": "${workspaceFolder}/daffodil-debugger.log",
                       "level": "INFO"
                   }
               }
           }
   ```
   
   would we need to persist the `C:/repos/test` value across the extension 
until we run a different configuration with a different path? Does the path 
specify a directory or the actual tdml file itself (so C:/repos/test would need 
to be C:/repos/test/test.tdml)?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@daffodil.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to