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

            generator.Generate();
        }