|
| 1 | +{ |
| 2 | + // Use IntelliSense to find out which attributes exist for C# debugging |
| 3 | + // Use hover for the description of the existing attributes |
| 4 | + // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md |
| 5 | + "version": "0.2.0", |
| 6 | + "configurations": [ |
| 7 | + { |
| 8 | + "name": "Uno Platform Mobile", |
| 9 | + "type": "Uno", |
| 10 | + "request": "launch", |
| 11 | + // any Uno* task will do, this is simply to satisfy vscode requirement when a launch.json is present |
| 12 | + "preLaunchTask": "Uno: android | Debug | android-x64" |
| 13 | + }, |
| 14 | + { |
| 15 | + // Use IntelliSense to find out which attributes exist for C# debugging |
| 16 | + // Use hover for the description of the existing attributes |
| 17 | + // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md |
| 18 | + "name": "Debug (Chrome, WebAssembly)", |
| 19 | + "type": "chrome", |
| 20 | + "request": "launch", |
| 21 | + "url": "http://localhost:5000", |
| 22 | + "webRoot": "${workspaceFolder}/DevExpressApp", |
| 23 | + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", |
| 24 | + "timeout": 30000, |
| 25 | + "preLaunchTask": "build-wasm", |
| 26 | + "server": { |
| 27 | + "runtimeExecutable": "dotnet", |
| 28 | + "program": "run", |
| 29 | + "args": ["--no-build","-f","net8.0-browserwasm","--launch-profile", "DevExpressApp (WebAssembly)"], |
| 30 | + "outputCapture": "std", |
| 31 | + "timeout": 30000, |
| 32 | + "cwd": "${workspaceFolder}/DevExpressApp" |
| 33 | + } |
| 34 | + }, |
| 35 | + { |
| 36 | + // Use IntelliSense to find out which attributes exist for C# debugging |
| 37 | + // Use hover for the description of the existing attributes |
| 38 | + // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md |
| 39 | + "name": "Uno Platform Desktop (Debug)", |
| 40 | + "type": "coreclr", |
| 41 | + "request": "launch", |
| 42 | + "preLaunchTask": "build-desktop", |
| 43 | + // If you have changed target frameworks, make sure to update the program path. |
| 44 | + "program": "${workspaceFolder}/DevExpressApp/bin/Debug/net8.0-desktop/DevExpressApp.dll", |
| 45 | + "args": [], |
| 46 | + "launchSettingsProfile": "DevExpressApp (Desktop)", |
| 47 | + "env": { |
| 48 | + "DOTNET_MODIFIABLE_ASSEMBLIES": "debug" |
| 49 | + }, |
| 50 | + "cwd": "${workspaceFolder}/DevExpressApp", |
| 51 | + // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console |
| 52 | + "console": "internalConsole", |
| 53 | + "stopAtEntry": false |
| 54 | + }, |
| 55 | + ] |
| 56 | +} |
0 commit comments