Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ProjectPath.cs 282B

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