コード例 #1
0
        ///
        /// <summary>
        /// Prepares a list of all the project's targets, then
        /// sends them to be written to file.
        /// </summary>
        /// <param name="proName">Project name</param>
        /// <param name="filePath">Save file location</param>
        /// <returns>True if the export was successful</returns>
        public bool exportIPs(string proName, string filePath)
        {
            List <TargetSettings> lstTS = getTargets(proName);
            ExportIPs             exIPs = new ExportIPs(filePath, lstTS);
            bool status = exIPs.writeToFile();

            return(status);
        }
コード例 #2
0
 ///
 /// <summary>
 /// Prepares a list of all the project's targets, then
 /// sends them to be written to file.
 /// </summary>
 /// <param name="proName">Project name</param>
 /// <param name="filePath">Save file location</param>
 /// <returns>True if the export was successful</returns>
 public bool exportIPs(string proName, string filePath)
 {
     List<TargetSettings> lstTS = getTargets(proName);
       ExportIPs exIPs = new ExportIPs(filePath, lstTS);
       bool status = exIPs.writeToFile();
       return status;
 }