示例#1
0
        public bool EditPostProcessing(string filename)
        {
            bool success = SourceControlSync.EditPostProcessing(filename);

            if (success)
            {
                return(true);
            }

            throw new Exception("[Rainbow] Edit post-processing failed for " + filename);
        }
示例#2
0
        public bool DeletePreProcessing(string filename)
        {
            bool success = SourceControlSync.DeletePreProcessing(filename);

            if (success)
            {
                return(true);
            }

            throw new Exception("[Rainbow] Delete pre-processing failed for " + filename);
        }
示例#3
0
 public bool FileExistsInSourceControl(string filename)
 {
     return(SourceControlSync.FileExistsInSourceControl(filename));
 }