File tree Expand file tree Collapse file tree 2 files changed +39
-0
lines changed
samples/core/getting-started/unit-testing-using-dotnet-test/.vscode Expand file tree Collapse file tree 2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.2.0" ,
3
+ "configurations" : [
4
+ {
5
+ "name" : " .NET Core Launch (console)" ,
6
+ "type" : " coreclr" ,
7
+ "request" : " launch" ,
8
+ "preLaunchTask" : " build" ,
9
+ "program" : " ${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>" ,
10
+ "args" : [],
11
+ "cwd" : " ${workspaceRoot}" ,
12
+ "externalConsole" : false ,
13
+ "stopAtEntry" : false ,
14
+ "internalConsoleOptions" : " openOnSessionStart"
15
+ },
16
+ {
17
+ "name" : " .NET Core Attach" ,
18
+ "type" : " coreclr" ,
19
+ "request" : " attach" ,
20
+ "processId" : " ${command.pickProcess}"
21
+ }
22
+ ]
23
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 0.1.0" ,
3
+ "command" : " dotnet" ,
4
+ "isShellCommand" : true ,
5
+ "args" : [],
6
+ "tasks" : [
7
+ {
8
+ "taskName" : " build" ,
9
+ "args" : [
10
+ " "
11
+ ],
12
+ "isBuildCommand" : true ,
13
+ "problemMatcher" : " $msCompile"
14
+ }
15
+ ]
16
+ }
You can’t perform that action at this time.
0 commit comments