Skip to content

Commit

Permalink
add run Linux, MacOS and Windows to tasks.json (#1215)
Browse files Browse the repository at this point in the history
I'm using vscode on linux and wanted a shortcut to run the app from the tasks panel
  • Loading branch information
MuhAssar authored Jun 18, 2024
1 parent 56f263a commit 1ce0c0a
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,51 @@
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": ["$msCompile"]
},
{
"label": "Run DevToys Linux",
"type": "shell",
"command": "dotnet",
"args": [
"run",
"--project",
"src/app/dev/platforms/desktop/DevToys.Linux",
],
"group": {
"kind": "none",
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": ["$msCompile"]
},
{
"label": "Run DevToys MacOS",
"type": "shell",
"command": "dotnet",
"args": [
"run",
"--project",
"src/app/dev/platforms/desktop/DevToys.MacOS",
],
"group": {
"kind": "none",
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": ["$msCompile"]
},
{
"label": "Run DevToys Windows",
"type": "shell",
"command": "dotnet",
"args": [
"run",
"--project",
"src/app/dev/platforms/desktop/DevToys.Windows",
],
"group": {
"kind": "none",
},
// Use the standard MS compiler pattern to detect errors, warnings and infos
"problemMatcher": ["$msCompile"]
}
]
}

0 comments on commit 1ce0c0a

Please sign in to comment.