Skip to content

Commit f5dc78e

Browse files
committed
Fix dotnetExeName
1 parent fd414e9 commit f5dc78e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/getDotnetInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export async function getDotnetInfo(dotNetCliPaths: string[]): Promise<DotnetInf
1515
return _dotnetInfo;
1616
}
1717

18-
let dotnetExeName = join('dotnet', CoreClrDebugUtil.getPlatformExeExtension());
18+
let dotnetExeName = `dotnet${CoreClrDebugUtil.getPlatformExeExtension()}`;
1919
let dotnetExecutablePath: string | undefined;
2020

2121
for (const dotnetPath of dotNetCliPaths) {

0 commit comments

Comments
 (0)