コード例 #1
0
        public static void CreateNewProject(string folderLocation, string projectName, string folderDivider)
        {
            if (folderLocation.Length == 0)
            {
                Console.WriteLine("Please enter a folder location for the new project.");
                return;
            }

            string path = Directory.GetCurrentDirectory();

            Console.WriteLine("Calling AL.dll at at : " + path);
            Console.WriteLine("");

            if (!CreateProject.CreateProjectFolder(folderLocation, projectName, folderDivider))
            {
                return;
            }
        }