Skip to content

Commit

Permalink
Merge pull request #5141 from OmniSharp/bugfix/path-nix-mono
Browse files Browse the repository at this point in the history
  • Loading branch information
nohwnd authored Apr 1, 2022
2 parents 36cd48a + 044dd91 commit e06361d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/omnisharp/launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ function launchNix(launchPath: string, cwd: string, args: string[]): LaunchResul

function launchNixMono(launchPath: string, cwd: string, args: string[], environment: NodeJS.ProcessEnv, useDebugger: boolean): LaunchResult {
let argsCopy = args.slice(0); // create copy of details args
argsCopy.unshift(`"${launchPath}"`);
argsCopy.unshift(launchPath);
argsCopy.unshift("--assembly-loader=strict");

if (useDebugger) {
Expand Down

0 comments on commit e06361d

Please sign in to comment.