Ejemplo n.º 1
0
        /// <summary>
        /// Create the folder on drive if doesn't exists, and
        /// Create local config files
        /// </summary>
        public void Init()
        {
            _project.CreateOnMyDrive();

            Directory.CreateDirectory(FilePath.DotPublishDir);
            var configJson = new ConfigJson(_project.SoftwareName);

            configJson.SaveJson();

            Console.WriteLine("Project created.");
        }