FNA-VSCode-Template/.vscode/tasks.json

313 lines
6.8 KiB
JSON
Raw Normal View History

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": [
{
"label": "Build: Mono Release",
2020-03-03 23:18:34 +00:00
"command": "msbuild",
"args": [
"-restore:True",
"${workspaceFolder}/ProjectName.Framework.sln",
2021-02-03 04:37:02 +00:00
"-p:Configuration=Release",
"-p:Platform=x64"
2020-03-03 23:18:34 +00:00
],
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": "$msCompile"
},
{
"label": "Run: Mono Release",
2020-03-03 23:18:34 +00:00
"command": "mono",
"args": [
"ProjectName.exe"
2020-03-03 23:18:34 +00:00
],
"options": {
"env": {
"LD_LIBRARY_PATH": "./lib64",
"DYLD_LIBRARY_PATH": "./osx"
},
2021-02-03 04:37:02 +00:00
"cwd": "${workspaceFolder}/ProjectName/bin/x64/Release/net461"
2020-03-03 23:18:34 +00:00
},
"type": "process",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Build & Run: Mono Release",
2020-03-03 23:18:34 +00:00
"dependsOn": [
"Build: Mono Release",
"Run: Mono Release"
2020-03-03 23:18:34 +00:00
],
"dependsOrder": "sequence",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Build: Mono Debug",
2020-03-03 23:18:34 +00:00
"command": "msbuild",
"args": [
"-restore:True",
"${workspaceFolder}/ProjectName.Framework.sln",
2021-02-03 04:37:02 +00:00
"-p:Configuration=Debug",
"-p:Platform=x64"
2020-03-03 23:18:34 +00:00
],
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Run: Mono Debug",
2020-03-03 23:18:34 +00:00
"command": "mono",
"args": [
"ProjectName.exe"
2020-03-03 23:18:34 +00:00
],
"options": {
"env": {
"LD_LIBRARY_PATH": "./lib64",
"DYLD_LIBRARY_PATH": "./osx"
},
2021-02-03 04:37:02 +00:00
"cwd": "${workspaceFolder}/ProjectName/bin/x64/Debug/net461"
2020-03-03 23:18:34 +00:00
},
"type": "process",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Build & Run: Mono Debug",
2020-03-03 23:18:34 +00:00
"dependsOn": [
"Build: Mono Debug",
"Run: Mono Debug"
2020-03-03 23:18:34 +00:00
],
"dependsOrder": "sequence",
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
2022-08-30 04:39:34 +00:00
"label": "Build & Run: .NET 6 Debug",
2020-03-03 23:18:34 +00:00
"type": "shell",
"dependsOrder": "sequence",
"dependsOn": [
2022-08-30 04:39:34 +00:00
"Build: .NET 6 Debug",
"Run: .NET 6 Debug"
2020-03-03 23:18:34 +00:00
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
2022-08-30 04:39:34 +00:00
"label": "Build: .NET 6 Debug",
2020-03-03 23:18:34 +00:00
"command": "dotnet",
"args": [
"build",
2020-08-06 23:50:57 +00:00
"./ProjectName/ProjectName.Core.csproj",
2021-02-03 04:37:02 +00:00
"-p:SolutionDir=${workspaceFolder}/",
"-p:Platform=x64"
2020-03-03 23:18:34 +00:00
],
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
2022-08-30 04:39:34 +00:00
"label": "Run: .NET 6 Debug",
2020-03-03 23:18:34 +00:00
"command": "dotnet",
"args": [
"./ProjectName.dll"
2020-03-03 23:18:34 +00:00
],
"options": {
"env": {
"LD_LIBRARY_PATH": "./lib64",
"DYLD_LIBRARY_PATH": "./osx"
},
2022-08-30 04:39:34 +00:00
"cwd": "${workspaceFolder}/ProjectName/bin/x64/Debug/net6.0"
2020-03-03 23:18:34 +00:00
},
"type": "process",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
2022-08-30 04:39:34 +00:00
"label": "Build: .NET 6 Release",
2020-03-03 23:18:34 +00:00
"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",
2021-02-03 04:37:02 +00:00
"-p:SolutionDir=${workspaceFolder}/",
"-p:Platform=x64"
2020-03-03 23:18:34 +00:00
],
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
2022-08-30 04:39:34 +00:00
"label": "Run: .NET 6 Release",
2020-03-03 23:18:34 +00:00
"command": "dotnet",
"args": [
"./ProjectName.dll"
2020-03-03 23:18:34 +00:00
],
"options": {
"env": {
"LD_LIBRARY_PATH": "./lib64",
"DYLD_LIBRARY_PATH": "./osx"
},
2022-08-30 04:39:34 +00:00
"cwd": "${workspaceFolder}/ProjectName/bin/x64/Release/net6.0"
2020-03-03 23:18:34 +00:00
},
"type": "process",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
2022-08-30 04:39:34 +00:00
"label": "Build & Run: .NET 6 Release",
2020-03-03 23:18:34 +00:00
"dependsOrder": "sequence",
"dependsOn": [
2022-08-30 04:39:34 +00:00
"Build: .NET 6 Release",
"Run: .NET 6 Release"
2020-03-03 23:18:34 +00:00
],
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Build: Framework Debug",
"command": "MsBuild.exe",
"args": [
"-restore:True",
2020-11-23 01:01:04 +00:00
"${workspaceFolder}/ProjectName.Framework.sln",
"-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",
"options": {
2021-02-03 04:37:02 +00:00
"cwd": "${workspaceFolder}/ProjectName/bin/x64/Debug/net461"
},
"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",
"-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",
"options": {
2021-02-03 04:37:02 +00:00
"cwd": "${workspaceFolder}/ProjectName/bin/x64/Release/net461"
},
"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
}
]
}