We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8786297 commit 28554d1Copy full SHA for 28554d1
src/Native/Windows.cs
@@ -323,22 +323,6 @@ private string FindVSCodeInsiders()
323
return string.Empty;
324
}
325
326
- private string FindRider()
327
- {
328
- var rider = Environment.GetEnvironmentVariable("JetBrains Rider");
329
- if (!string.IsNullOrEmpty(rider))
330
331
- rider = rider.TrimEnd(';', ' ');
332
- var path = Path.Combine(rider, "rider64.exe");
333
- if (File.Exists(path))
334
335
- return path;
336
- }
337
338
-
339
- return string.Empty;
340
341
342
private string FindSublimeText()
343
{
344
var localMachine = Microsoft.Win32.RegistryKey.OpenBaseKey(
0 commit comments