We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77b0dc1 commit 1dd328fCopy full SHA for 1dd328f
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Release Notes
2
3
+## 2.5.2 (2022-08-??)
4
+
5
+- Fixed an issue when project tasks with a title didn't work (issue [#3274](https://github.com/platformio/platformio-vscode-ide/issues/3274))
6
7
## 2.5.1 (2022-07-28)
8
9
**Requires VSCode 1.63 or above**
src/project/tasks.js
@@ -120,7 +120,7 @@ export default class ProjectTaskManager {
120
task: projectTask.id,
121
},
122
vscode.workspace.getWorkspaceFolder(vscode.Uri.file(this.projectDir)),
123
- projectTask.title,
+ projectTask.id,
124
ProjectTaskManager.PROVIDER_TYPE,
125
new vscode.ProcessExecution(
126
IS_WINDOWS ? 'platformio.exe' : 'platformio',
0 commit comments