StellarXipher/Library/PackageCache/com.unity.collab-proxy@001b54a8988a/Editor/AssetsUtils/ProjectPath.cs
2025-02-06 16:45:46 -05:00

13 lines
282 B
C#

using System.IO;
namespace Unity.PlasticSCM.Editor.AssetUtils
{
internal static class ProjectPath
{
internal static string FromApplicationDataPath(string dataPath)
{
return Path.GetDirectoryName(Path.GetFullPath(dataPath));
}
}
}