public OldProjectFormatProjectGenerator(GeneratorOptions options, Action <string> consoleWriteLine = null) : base(options, consoleWriteLine)
 {
 }
 protected ProjectGenerator(GeneratorOptions options, Action <string> consoleWriteLine = null)
 {
     _options          = options;
     _consoleWriteLine = consoleWriteLine ?? Console.WriteLine;
 }
        private static void RunOptionsAndReturnExitCode(GeneratorOptions opts)
        {
            var generator = opts.CreateProjectGenerator();

            generator.Generate();
        }