예제 #1
0
파일: GMacProject.cs 프로젝트: phreed/GMac
        /// <summary>
        /// Create a new GMac project and save its relevant information to the given file
        /// </summary>
        /// <param name="projectFilePath">The file to which the project is saved</param>
        /// <returns>The new GMac project</returns>
        public static GMacProject CreateNew(string projectFilePath)
        {
            var project = new GMacProject(projectFilePath);

            project.SaveProjectToXmlFile();

            return(project);
        }