Ejemplo n.º 1
0
        public static void OpenProject(string projPath)
        {
            if (Directory.Exists(projPath))
            {
                Directory.SetCurrentDirectory(projPath);
            }
            else if (projPath != "")
            {
                return;
            }

            string[] manifest = File.ReadAllLines("manifest.ctproj");
            s_openProject = new CTProject();
            s_openProject.ReadManifest(manifest);
        }