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 fc258c7 commit 800414eCopy full SHA for 800414e
src/tasks/SwiftTaskProvider.ts
@@ -122,7 +122,7 @@ function getBuildRevealOption(): vscode.TaskRevealKind {
122
const buildAllTaskCache = (() => {
123
const cache = new Map<string, SwiftTask>();
124
const key = (name: string, folderContext: FolderContext) => {
125
- return `${name}:${buildOptions(folderContext.workspaceContext.toolchain).join(",")}`;
+ return `${name}:${folderContext.folder}:${buildOptions(folderContext.workspaceContext.toolchain).join(",")}`;
126
};
127
return {
128
get(name: string, folderContext: FolderContext): SwiftTask | undefined {
0 commit comments