Skip to content

Commit

Permalink
Merge pull request #5459 from tvardero/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
dibarbet authored Nov 16, 2022
2 parents ba0976d + 184a971 commit 3485047
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/omnisharp/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -403,11 +403,11 @@ export class OmniSharpServer {
}

if (options.sdkPath.length > 0) {
args.push(`Sdk:Path='${options.sdkPath}'`);
args.push(`Sdk:Path=${options.sdkPath}`);
}

if (options.sdkVersion.length > 0) {
args.push(`Sdk:Version='${options.sdkVersion}'`);
args.push(`Sdk:Version=${options.sdkVersion}`);
}

if (options.sdkIncludePrereleases) {
Expand Down

0 comments on commit 3485047

Please sign in to comment.