Skip to content

Commit

Permalink
EasyJob 1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
akshinmustafayev authored Nov 4, 2021
1 parent f604034 commit 59c8af9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions EasyJob/Utils/CommonUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,16 @@ public static string ApplyConsoleColorTagsToText(string Text)

return Text;
}

public static string ConvertPartToRelative(string Path)
{
Path = Path.Replace(AppDomain.CurrentDomain.BaseDirectory, "");
return Path;
}

public static string ApplicationStartupPath()
{
return AppDomain.CurrentDomain.BaseDirectory;
}
}
}

0 comments on commit 59c8af9

Please sign in to comment.