Ejemplo n.º 1
0
        public List <string> ExportSolutions(
            string outputFolder,
            string configFilePath)
        {
            SolutionExportConfig config =
                Serializers.ParseJson <SolutionExportConfig>(configFilePath);

            List <string> solutionFilePaths = ExportSolutions(outputFolder,
                                                              config);

            return(solutionFilePaths);
        }
Ejemplo n.º 2
0
        public List <string> ExportSolutions(
            string outputFolder,
            SolutionExportConfig config)
        {
            List <string> solutionFilePaths = new List <string>();

            foreach (SolutionExportOptions option in config.Solutions)
            {
                solutionFilePaths.Add(ExportSolution(outputFolder,
                                                     option));
            }

            return(solutionFilePaths);
        }