/// <summary> /// Copy a file to the project folder. /// </summary> /// <param name="srcFile">full path to source file</param> /// <param name="destName">destination file (relative to the location of the project)</param> /// <returns>full path to the destination file</returns> public string CopyFileToProjectFolder(string srcFile, string destName) { if (qtPro == null) { throw new QtVSException(commonError); } return(qtPro.CopyFileToProject(srcFile, destName)); }