Skip to content

Commit f183afe

Browse files
Fix build break
1 parent b35db02 commit f183afe

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/omnisharp/launcher.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,7 @@ function launch(cwd: string, args: string[]): Promise<LaunchResult> {
169169
return launchWindows(launchPath, cwd, args);
170170
}
171171
else {
172-
if (kind === LaunchTargetKind.Solution) {
173-
return launchNixMono(launchPath, cwd, args);
174-
}
175-
else {
176-
return launchNix(launchPath, cwd, args);
177-
}
172+
return launchNix(launchPath, cwd, args);
178173
}
179174
});
180175
}

0 commit comments

Comments
 (0)