Skip to content

Commit

Permalink
Fix incorrect default location of dotnet executable on Windows as ins…
Browse files Browse the repository at this point in the history
…talled by Rider.
  • Loading branch information
GitHubPang committed Aug 9, 2021
1 parent 01401ea commit ca91f6f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ internal class BackendService : IBackendService {
private val DEFAULT_DOT_NET_PATHS = if (SystemInfoRt.isWindows) {
arrayOf(
"C:\\program files\\dotnet\\dotnet.exe", // Default location of dotnet executable on Windows.
"C:\\Users\\User\\.dotnet\\dotnet.exe", // Default location of dotnet executable on Windows as installed by Rider.
System.getProperty("user.home") + "\\.dotnet\\dotnet.exe", // Default location of dotnet executable on Windows as installed by Rider.
)
} else {
arrayOf(
Expand Down

0 comments on commit ca91f6f

Please sign in to comment.