MoonWorksTemplate/.vscode/tasks.json

117 lines
2.3 KiB
JSON
Raw Normal View History

2021-04-04 21:01:40 +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": [
{
2023-12-13 19:21:23 +00:00
"label": "Build & Run: .NET 8 Debug",
2021-04-04 21:01:40 +00:00
"type": "shell",
"dependsOrder": "sequence",
"dependsOn": [
2023-12-13 19:21:23 +00:00
"Build: .NET 8 Debug",
"Run: .NET 8 Debug"
2021-04-04 21:01:40 +00:00
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
2023-12-13 19:21:23 +00:00
"label": "Build: .NET 8 Debug",
2021-04-04 21:01:40 +00:00
"command": "dotnet",
"args": [
"build",
"./ProjectName.csproj",
2023-12-13 19:21:23 +00:00
"-p:SolutionDir=${workspaceFolder}/"
2021-04-04 21:01:40 +00:00
],
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
2023-12-13 19:21:23 +00:00
"label": "Run: .NET 8 Debug",
2023-06-08 18:07:20 +00:00
"command": "ProjectName",
"windows": {
"command": "ProjectName.exe"
},
2021-04-04 21:01:40 +00:00
"options": {
2023-12-13 19:21:23 +00:00
"cwd": "${workspaceFolder}/bin/Debug/net8.0"
2021-04-04 21:01:40 +00:00
},
"type": "process",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
2023-12-13 19:21:23 +00:00
"label": "Build: .NET 8 Release",
2021-04-04 21:01:40 +00:00
"command": "dotnet",
"args": [
"build",
"./ProjectName.csproj",
2021-04-04 21:01:40 +00:00
"--configuration",
"Release",
2023-12-13 19:21:23 +00:00
"-p:SolutionDir=${workspaceFolder}/"
2021-04-04 21:01:40 +00:00
],
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
2023-12-13 19:21:23 +00:00
"label": "Run: .NET 8 Release",
2023-06-08 18:07:20 +00:00
"command": "ProjectName",
"windows": {
"command": "ProjectName.exe"
},
2021-04-04 21:01:40 +00:00
"options": {
2023-12-21 23:21:49 +00:00
"cwd": "${workspaceFolder}/bin/Release/net8.0"
2021-04-04 21:01:40 +00:00
},
"type": "process",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
2023-12-13 19:21:23 +00:00
"label": "Build & Run: .NET 8 Release",
2021-04-04 21:01:40 +00:00
"dependsOrder": "sequence",
"dependsOn": [
2023-12-13 19:21:23 +00:00
"Build: .NET 8 Release",
"Run: .NET 8 Release"
2021-04-04 21:01:40 +00:00
],
"type": "shell",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}