arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.ide.rider@1f60b3138684/Rider/Editor/Util/RiderPathUtil.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02:00

14 lines
300 B
C#

using System.IO;
namespace Rider.Editor.Util
{
internal static class RiderPathUtil
{
public static bool IsRiderDevEditor(string editorPath)
{
if (editorPath == null)
return false;
return "rider-dev".Equals(Path.GetFileNameWithoutExtension(editorPath));
}
}
}