설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RiderPathUtil.cs 300B

1234567891011121314
  1. using System.IO;
  2. namespace Rider.Editor.Util
  3. {
  4. internal static class RiderPathUtil
  5. {
  6. public static bool IsRiderDevEditor(string editorPath)
  7. {
  8. if (editorPath == null)
  9. return false;
  10. return "rider-dev".Equals(Path.GetFileNameWithoutExtension(editorPath));
  11. }
  12. }
  13. }