2020-03-03 23:18:34 +00:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"options": {
|
|
|
|
"cwd": "${workspaceRoot}"
|
|
|
|
},
|
|
|
|
"windows": {
|
|
|
|
"options": {
|
|
|
|
"shell": {
|
|
|
|
"executable": "cmd.exe",
|
|
|
|
"args": [
|
|
|
|
"/d",
|
|
|
|
"/c"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"presentation": {
|
|
|
|
"reveal": "always",
|
|
|
|
"focus": true,
|
|
|
|
"panel": "shared"
|
|
|
|
},
|
|
|
|
"tasks": [
|
|
|
|
{
|
2020-11-17 06:29:21 +00:00
|
|
|
"label": "Build: Mono Release",
|
2020-03-03 23:18:34 +00:00
|
|
|
"command": "msbuild",
|
|
|
|
"args": [
|
|
|
|
"-restore:True",
|
|
|
|
"${workspaceFolder}/ProjectName.Framework.sln",
|
|
|
|
"-p:Configuration=Release"
|
|
|
|
],
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": "$msCompile"
|
|
|
|
},
|
|
|
|
{
|
2020-11-17 06:29:21 +00:00
|
|
|
"label": "Run: Mono Release",
|
2020-03-03 23:18:34 +00:00
|
|
|
"command": "mono",
|
|
|
|
"args": [
|
2020-06-24 04:54:09 +00:00
|
|
|
"ProjectName.exe"
|
2020-03-03 23:18:34 +00:00
|
|
|
],
|
|
|
|
"options": {
|
|
|
|
"env": {
|
2020-06-24 04:54:09 +00:00
|
|
|
"LD_LIBRARY_PATH": "./lib64",
|
|
|
|
"DYLD_LIBRARY_PATH": "./osx"
|
|
|
|
},
|
2020-11-17 06:29:21 +00:00
|
|
|
"cwd": "${workspaceFolder}/ProjectName/bin/Release/net48"
|
2020-03-03 23:18:34 +00:00
|
|
|
},
|
|
|
|
"type": "process",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
2020-11-17 06:29:21 +00:00
|
|
|
"label": "Build & Run: Mono Release",
|
2020-03-03 23:18:34 +00:00
|
|
|
"dependsOn": [
|
2020-11-17 06:29:21 +00:00
|
|
|
"Build: Mono Release",
|
|
|
|
"Run: Mono Release"
|
2020-03-03 23:18:34 +00:00
|
|
|
],
|
|
|
|
"dependsOrder": "sequence",
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
2020-11-17 06:29:21 +00:00
|
|
|
"label": "Build: Mono Debug",
|
2020-03-03 23:18:34 +00:00
|
|
|
"command": "msbuild",
|
|
|
|
"args": [
|
|
|
|
"-restore:True",
|
|
|
|
"${workspaceFolder}/ProjectName.Framework.sln",
|
|
|
|
"-p:Configuration=Debug"
|
|
|
|
],
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
2020-11-17 06:29:21 +00:00
|
|
|
"label": "Run: Mono Debug",
|
2020-03-03 23:18:34 +00:00
|
|
|
"command": "mono",
|
|
|
|
"args": [
|
2020-06-24 04:54:09 +00:00
|
|
|
"ProjectName.exe"
|
2020-03-03 23:18:34 +00:00
|
|
|
],
|
|
|
|
"options": {
|
|
|
|
"env": {
|
2020-06-24 04:54:09 +00:00
|
|
|
"LD_LIBRARY_PATH": "./lib64",
|
|
|
|
"DYLD_LIBRARY_PATH": "./osx"
|
|
|
|
},
|
2020-11-17 06:29:21 +00:00
|
|
|
"cwd": "${workspaceFolder}/ProjectName/bin/Debug/net48"
|
2020-03-03 23:18:34 +00:00
|
|
|
},
|
|
|
|
"type": "process",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
2020-11-17 06:29:21 +00:00
|
|
|
"label": "Build & Run: Mono Debug",
|
2020-03-03 23:18:34 +00:00
|
|
|
"dependsOn": [
|
2020-11-17 06:29:21 +00:00
|
|
|
"Build: Mono Debug",
|
|
|
|
"Run: Mono Debug"
|
2020-03-03 23:18:34 +00:00
|
|
|
],
|
|
|
|
"dependsOrder": "sequence",
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build & Run: Core Debug",
|
|
|
|
"type": "shell",
|
|
|
|
"dependsOrder": "sequence",
|
|
|
|
"dependsOn": [
|
|
|
|
"Build: Core Debug",
|
|
|
|
"Run: Core Debug"
|
|
|
|
],
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build: Core Debug",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
2020-08-06 23:50:57 +00:00
|
|
|
"./ProjectName/ProjectName.Core.csproj",
|
|
|
|
"-p:SolutionDir=${workspaceFolder}/"
|
2020-03-03 23:18:34 +00:00
|
|
|
],
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Run: Core Debug",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
2020-06-24 04:54:09 +00:00
|
|
|
"./ProjectName.dll"
|
2020-03-03 23:18:34 +00:00
|
|
|
],
|
|
|
|
"options": {
|
|
|
|
"env": {
|
2020-06-24 04:54:09 +00:00
|
|
|
"LD_LIBRARY_PATH": "./lib64",
|
|
|
|
"DYLD_LIBRARY_PATH": "./osx"
|
|
|
|
},
|
|
|
|
"cwd": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1"
|
2020-03-03 23:18:34 +00:00
|
|
|
},
|
|
|
|
"type": "process",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build: Core Release",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
|
|
|
"build",
|
2020-08-06 23:50:57 +00:00
|
|
|
"./ProjectName/ProjectName.Core.csproj",
|
2020-03-03 23:18:34 +00:00
|
|
|
"--configuration",
|
|
|
|
"Release",
|
2020-08-06 23:50:57 +00:00
|
|
|
"-p:SolutionDir=${workspaceFolder}/"
|
2020-03-03 23:18:34 +00:00
|
|
|
],
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Run: Core Release",
|
|
|
|
"command": "dotnet",
|
|
|
|
"args": [
|
2020-06-24 04:54:09 +00:00
|
|
|
"./ProjectName.dll"
|
2020-03-03 23:18:34 +00:00
|
|
|
],
|
|
|
|
"options": {
|
|
|
|
"env": {
|
2020-06-24 04:54:09 +00:00
|
|
|
"LD_LIBRARY_PATH": "./lib64",
|
|
|
|
"DYLD_LIBRARY_PATH": "./osx"
|
|
|
|
},
|
|
|
|
"cwd": "${workspaceFolder}/ProjectName/bin/Release/netcoreapp3.1"
|
2020-03-03 23:18:34 +00:00
|
|
|
},
|
|
|
|
"type": "process",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build & Run: Core Release",
|
|
|
|
"dependsOrder": "sequence",
|
|
|
|
"dependsOn": [
|
|
|
|
"Build: Core Release",
|
|
|
|
"Run: Core Release"
|
|
|
|
],
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
2020-11-17 06:29:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build: Framework Debug",
|
|
|
|
"command": "MsBuild.exe",
|
|
|
|
"args": [
|
|
|
|
"-restore:True",
|
2020-11-23 01:01:04 +00:00
|
|
|
"${workspaceFolder}/ProjectName.Framework.sln",
|
2020-11-17 06:29:21 +00:00
|
|
|
"-p:Configuration=Debug",
|
|
|
|
"-p:Platform=x64"
|
|
|
|
],
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Run: Framework Debug",
|
2020-11-23 01:01:04 +00:00
|
|
|
"command": "ProjectName.exe",
|
2020-11-17 06:29:21 +00:00
|
|
|
"options": {
|
2020-11-23 01:01:04 +00:00
|
|
|
"cwd": "${workspaceFolder}/ProjectName/bin/Debug/net48"
|
2020-11-17 06:29:21 +00:00
|
|
|
},
|
|
|
|
"type": "process",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build & Run: Framework Debug",
|
|
|
|
"dependsOn": [
|
|
|
|
"Build: Framework Debug",
|
|
|
|
"Run: Framework Debug"
|
|
|
|
],
|
|
|
|
"dependsOrder": "sequence",
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build: Framework Release",
|
|
|
|
"command": "MsBuild.exe",
|
|
|
|
"args": [
|
|
|
|
"-restore:True",
|
2020-11-23 01:01:04 +00:00
|
|
|
"${workspaceFolder}/ProjectName.Framework.sln",
|
2020-11-17 06:29:21 +00:00
|
|
|
"-p:Configuration=Release",
|
|
|
|
"-p:Platform=x64"
|
|
|
|
],
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Run: Framework Release",
|
2020-11-23 01:01:04 +00:00
|
|
|
"command": "ProjectName.exe",
|
2020-11-17 06:29:21 +00:00
|
|
|
"options": {
|
2020-11-23 01:01:04 +00:00
|
|
|
"cwd": "${workspaceFolder}/ProjectName/bin/Release/net48"
|
2020-11-17 06:29:21 +00:00
|
|
|
},
|
|
|
|
"type": "process",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"label": "Build & Run: Framework Release",
|
|
|
|
"dependsOn": [
|
|
|
|
"Build: Framework Release",
|
|
|
|
"Run: Framework Release"
|
|
|
|
],
|
|
|
|
"dependsOrder": "sequence",
|
|
|
|
"type": "shell",
|
|
|
|
"group": {
|
|
|
|
"kind": "build",
|
|
|
|
"isDefault": true
|
|
|
|
},
|
|
|
|
"problemMatcher": []
|
2020-03-03 23:18:34 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|