Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"recommendations": [
"ms-vscode.csharp",
"ms-vscode.cpptools",
"ms-vscode.mono-debug",
"wghats.vscode-nxunit-test-adapter",
"visualstudioexptteam.vscodeintellicode",
]
}
22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "mono",
"request": "launch",
"program": "${workspaceRoot}/packages/NUnit.ConsoleRunner.3.9.0/tools/nunit3-console.exe ${workspaceRoot}/bin/TestDebug/generator-Tests.dll",
"cwd": "${workspaceRoot}bin/TestDebug/"
},
{
"name": "Attach",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555
}
]
}
10 changes: 10 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"nxunitExplorer.nunit": "packages/NUnit.ConsoleRunner.3.9.0/tools/nunit3-console.exe",
"nxunitExplorer.modules": [
"bin/TestDebug/generator-Tests.dll",
"bin/TestDebug/Java.Interop.Tools.JavaCallableWrappers-Tests.dll",
"bin/TestDebug/LogcatParse-Tests.dll",
"bin/TestDebug/Xamarin.Android.Tools.ApiXmlAdjuster-Tests.dll",
"bin/TestDebug/Xamarin.Android.Tools.Bytecode-Tests.dll",
]
}
67 changes: 67 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build Java.Interop",
"type": "shell",
"command": "msbuild Java.Interop.sln /restore /t:Build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$msCompile"
]
},
{
"label": "Clean Java.Interop",
"type": "shell",
"command": "msbuild Java.Interop.sln /restore /t:Clean",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$msCompile"
]
},
{
"label": "Build Generator",
"type": "shell",
"command": "msbuild tools/generator/generator.sln /restore /t:Build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$msCompile"
]
},
{
"label": "Clean Generator",
"type": "shell",
"command": "msbuild tools/generator/generator.sln /restore /t:Clean",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [
"$msCompile"
]
},
{
"label": "Run Generator Unit Tests",
"type": "shell",
"command": "msbuild tools/generator/generator.sln /restore /t:RunNunitTests",
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": [
"$msCompile"
]
}
]
}
8 changes: 8 additions & 0 deletions Java.Interop.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders": [
{
"path": "."
}
],
"settings": {}
}