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