Skip to content

Commit

Permalink
Merge pull request #4774 from TanayParikh/patch-2
Browse files Browse the repository at this point in the history
Build fix in `commands.pickProjectAndStart`
  • Loading branch information
JoeRobich authored Sep 16, 2021
2 parents 4ed946f + 505cc90 commit f56356b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ async function restartOmniSharp(context: vscode.ExtensionContext, server: OmniSh

async function pickProjectAndStart(server: OmniSharpServer, optionProvider: OptionProvider): Promise<void> {
let options = optionProvider.GetLatestOptions();
return findLaunchTargets(options).then(targets => {
return findLaunchTargets(options).then(async targets => {

let currentPath = server.getSolutionPathOrFolder();
if (currentPath) {
Expand Down

0 comments on commit f56356b

Please sign in to comment.