|
1 | 1 | {
|
2 | 2 | "version": "0.2.0",
|
3 | 3 | "configurations": [
|
4 |
| - { |
5 |
| - // Use IntelliSense to find out which attributes exist for C# debugging |
6 |
| - // Use hover for the description of the existing attributes |
7 |
| - // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md |
8 |
| - "name": "C#: Concept Samples", |
9 |
| - "type": "coreclr", |
10 |
| - "request": "launch", |
11 |
| - "preLaunchTask": "build (Concepts)", |
12 |
| - // If you have changed target frameworks, make sure to update the program path. |
13 |
| - "program": "${workspaceFolder}/dotnet/samples/Concepts/bin/Debug/net6.0/Concepts.dll", |
14 |
| - "args": [ |
15 |
| - /*"example0"*/ |
16 |
| - ], |
17 |
| - "cwd": "${workspaceFolder}/dotnet/samples/Concepts", |
18 |
| - // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console |
19 |
| - "console": "internalConsole", |
20 |
| - "stopAtEntry": false |
21 |
| - }, |
22 |
| - { |
23 |
| - "name": ".NET Core Attach", |
24 |
| - "type": "coreclr", |
25 |
| - "request": "attach" |
26 |
| - }, |
27 |
| - { |
28 |
| - "cwd": "${workspaceFolder}/python", |
29 |
| - "name": "Python: Test Module", |
30 |
| - "type": "python", |
31 |
| - "request": "launch", |
32 |
| - "module": "pytest", |
33 |
| - "args": ["${file}"] |
34 |
| - }, |
35 |
| - { |
36 |
| - "name": "C#: HuggingFaceImageToText Demo", |
37 |
| - "type": "dotnet", |
38 |
| - "request": "launch", |
39 |
| - "projectPath": "${workspaceFolder}\\dotnet\\samples\\Demos\\HuggingFaceImageToText.csproj", |
40 |
| - "launchConfigurationId": "TargetFramework=;HuggingFaceImageToText" |
41 |
| - }, |
42 |
| - { |
43 |
| - "name": "C#: GettingStarted Samples", |
44 |
| - "type": "dotnet", |
45 |
| - "request": "launch", |
46 |
| - "projectPath": "${workspaceFolder}\\dotnet\\samples\\GettingStarted\\GettingStarted.csproj", |
47 |
| - "launchConfigurationId": "TargetFramework=;GettingStarted" |
48 |
| - } |
49 | 4 | ]
|
50 | 5 | }
|
0 commit comments