1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-21 01:18:02 +02:00

Made workspace user file try to use workspace-relative paths

This commit is contained in:
Brian Fiete 2020-09-17 07:12:46 -07:00
parent 10da44e341
commit 980132c3cc
4 changed files with 77 additions and 26 deletions

View file

@ -54,6 +54,11 @@ namespace System.IO
}
public static bool IsDirectorySeparatorChar(char8 c)
{
return (c == DirectorySeparatorChar) || (c == AltDirectorySeparatorChar);
}
public static void ChangeExtension(StringView path, StringView ext, String outPath)
{
if (path.IsNull)