Exemple #1
0
        /// <summary>
        /// Copies the content of the libs folder to the destination.
        /// </summary>
        /// <param name="destination"></param>
        protected void CopyLibs(string destination)
        {
            string path = Path.Combine(WorkSpace.DIR, WorkSpace.LIBS_DIR);

            DirCopy.DirectoryCopy(path, destination, true);
        }
Exemple #2
0
 /// <summary>
 /// Copies the Node-Dependencies
 /// </summary>
 /// <param name="destination">To copy to</param>
 /// <param name="nodes">To use.</param>
 protected void CopyNodes(string destination, Node[] nodes)
 {
     nodes.ForEach(n => DirCopy.DirectoryCopy(n, destination));
 }