File tree Expand file tree Collapse file tree 5 files changed +116
-0
lines changed Expand file tree Collapse file tree 5 files changed +116
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "recommendations" : [
3+ " ms-vscode.csharp" ,
4+ " ms-vscode.cpptools" ,
5+ " ms-vscode.mono-debug" ,
6+ " wghats.vscode-nxunit-test-adapter" ,
7+ " visualstudioexptteam.vscodeintellicode" ,
8+ ]
9+ }
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" : " Launch" ,
9+ "type" : " mono" ,
10+ "request" : " launch" ,
11+ "program" : " ${workspaceRoot}/packages/NUnit.ConsoleRunner.3.9.0/tools/nunit3-console.exe ${workspaceRoot}/bin/TestDebug/generator-Tests.dll" ,
12+ "cwd" : " ${workspaceRoot}bin/TestDebug/"
13+ },
14+ {
15+ "name" : " Attach" ,
16+ "type" : " mono" ,
17+ "request" : " attach" ,
18+ "address" : " localhost" ,
19+ "port" : 55555
20+ }
21+ ]
22+ }
Original file line number Diff line number Diff line change 1+ {
2+ "nxunitExplorer.nunit" : " packages/NUnit.ConsoleRunner.3.9.0/tools/nunit3-console.exe" ,
3+ "nxunitExplorer.modules" : [
4+ " bin/TestDebug/generator-Tests.dll" ,
5+ " bin/TestDebug/Java.Interop.Tools.JavaCallableWrappers-Tests.dll" ,
6+ " bin/TestDebug/LogcatParse-Tests.dll" ,
7+ " bin/TestDebug/Xamarin.Android.Tools.ApiXmlAdjuster-Tests.dll" ,
8+ " bin/TestDebug/Xamarin.Android.Tools.Bytecode-Tests.dll" ,
9+ ]
10+ }
Original file line number Diff line number Diff line change 1+ {
2+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3+ // for the documentation about the tasks.json format
4+ "version" : " 2.0.0" ,
5+ "tasks" : [
6+ {
7+ "label" : " Build Java.Interop Tasks" ,
8+ "type" : " shell" ,
9+ "command" : " msbuild Java.Interop.sln /restore /t:Build" ,
10+ "group" : {
11+ "kind" : " build" ,
12+ "isDefault" : true
13+ },
14+ "problemMatcher" : [
15+ " $msCompile"
16+ ]
17+ },
18+ {
19+ "label" : " Clean Java.Interop Tasks" ,
20+ "type" : " shell" ,
21+ "command" : " msbuild Java.Interop.sln /restore /t:Clean" ,
22+ "group" : {
23+ "kind" : " build" ,
24+ "isDefault" : true
25+ },
26+ "problemMatcher" : [
27+ " $msCompile"
28+ ]
29+ },
30+ {
31+ "label" : " Build Generator Tasks" ,
32+ "type" : " shell" ,
33+ "command" : " msbuild tools/generator/generator.sln /restore /t:Build" ,
34+ "group" : {
35+ "kind" : " build" ,
36+ "isDefault" : true
37+ },
38+ "problemMatcher" : [
39+ " $msCompile"
40+ ]
41+ },
42+ {
43+ "label" : " Clean Java.Interop Tasks" ,
44+ "type" : " shell" ,
45+ "command" : " msbuild tools/generator/generator.sln /restore /t:Clean" ,
46+ "group" : {
47+ "kind" : " build" ,
48+ "isDefault" : true
49+ },
50+ "problemMatcher" : [
51+ " $msCompile"
52+ ]
53+ },
54+ {
55+ "label" : " Run Generator Unit Tests" ,
56+ "type" : " shell" ,
57+ "command" : " msbuild tools/generator/generator.sln /restore /t:RunNunitTests" ,
58+ "group" : {
59+ "kind" : " test" ,
60+ "isDefault" : true
61+ },
62+ "problemMatcher" : [
63+ " $msCompile"
64+ ]
65+ }
66+ ]
67+ }
Original file line number Diff line number Diff line change 1+ {
2+ "folders" : [
3+ {
4+ "path" : " ."
5+ }
6+ ],
7+ "settings" : {}
8+ }
You can’t perform that action at this time.
0 commit comments