1using System.IO; 2 3namespace Unity.PlasticSCM.Editor.AssetUtils 4{ 5 internal static class ProjectPath 6 { 7 internal static string Get() 8 { 9 return Path.GetDirectoryName(Path.GetFullPath( 10 ApplicationDataPath.Get())); 11 } 12 } 13}