public static void SaveToFile(GeneratorOptions generatorOptions, string parentDir, string fileName, string content) { string path = GetBasePath(generatorOptions); path = Path.Combine(path, parentDir); BuilderUtils.CreateFile(path, fileName, content); }