{
	/* export JavaSdkDirectory=/usr/lib/jvm/java-11-openjdk */
	"version": "2.0.0",
	"tasks": [
		/* ... */
		{
			"label": "run-debug-android",
			"command": "dotnet",
			"type": "shell",
			"args": [
				"build",
				"--no-restore",
				"-t:Run",
				"${workspaceFolder}/ZymonicApp.Android/ZymonicApp.Android.csproj",
				"-p:TargetFramework=net9.0-android",
				"-p:Configuration=Debug",
				"-p:AndroidAttachDebugger=true",
				"-p:AndroidSdbHostPort=55555",
				"-p:AndroidSdbTargetPort=55555"
			],
			"problemMatcher": "$msCompile"
		},
		{
			"label": "build-android",
			"command": "dotnet",
			"type": "process",
			"args": [
				"build",
				"--no-restore",
				"${workspaceFolder}/ZymonicApp.Android/ZymonicApp.Android.csproj",
				"-p:TargetFramework=net9.0-android",
				"-p:Configuration=Debug"
			],
			"problemMatcher": "$msCompile"
		},
		{
			"label": "publish-linux-x64",
			"command": "dotnet",
			"type": "process",
			"args": [
				"publish",
				"${workspaceFolder}/ZymonicApp.Desktop/ZymonicApp.Desktop.csproj",
				"-c:release",
				"-r:linux-x64"
			],
			"problemMatcher": "$msCompile"
		}
	]
}