File tree 2 files changed +67
-0
lines changed
2 files changed +67
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "name" : " .NET Core Launch (console)" ,
9
+ "type" : " coreclr" ,
10
+ "request" : " launch" ,
11
+ "preLaunchTask" : " build" ,
12
+ "program" : " ${workspaceFolder}/tests/Test/bin/Debug/netcoreapp3.0/Test.dll" ,
13
+ "args" : [],
14
+ "cwd" : " ${workspaceFolder}/tests/Test" ,
15
+ "console" : " internalConsole" ,
16
+ "stopAtEntry" : false
17
+ },
18
+ {
19
+ "name" : " .NET Core Attach" ,
20
+ "type" : " coreclr" ,
21
+ "request" : " attach" ,
22
+ "processId" : " ${command:pickProcess}"
23
+ }
24
+ ]
25
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "version" : " 2.0.0" ,
3
+ "tasks" : [
4
+ {
5
+ "label" : " build" ,
6
+ "command" : " dotnet" ,
7
+ "type" : " process" ,
8
+ "args" : [
9
+ " build" ,
10
+ " ${workspaceFolder}/tests/Test/Test.csproj" ,
11
+ " /property:GenerateFullPaths=true" ,
12
+ " /consoleloggerparameters:NoSummary"
13
+ ],
14
+ "problemMatcher" : " $msCompile"
15
+ },
16
+ {
17
+ "label" : " publish" ,
18
+ "command" : " dotnet" ,
19
+ "type" : " process" ,
20
+ "args" : [
21
+ " publish" ,
22
+ " ${workspaceFolder}/tests/Test/Test.csproj" ,
23
+ " /property:GenerateFullPaths=true" ,
24
+ " /consoleloggerparameters:NoSummary"
25
+ ],
26
+ "problemMatcher" : " $msCompile"
27
+ },
28
+ {
29
+ "label" : " watch" ,
30
+ "command" : " dotnet" ,
31
+ "type" : " process" ,
32
+ "args" : [
33
+ " watch" ,
34
+ " run" ,
35
+ " ${workspaceFolder}/tests/Test/Test.csproj" ,
36
+ " /property:GenerateFullPaths=true" ,
37
+ " /consoleloggerparameters:NoSummary"
38
+ ],
39
+ "problemMatcher" : " $msCompile"
40
+ }
41
+ ]
42
+ }
You can’t perform that action at this time.
0 commit comments