namespace MycroForge.CLI.Extensions; public static class StringExtensions { public static string SlashesToDots(this string path) => path.Replace('/', '.') .Replace('\\', '.') .Trim(); }