Exemple #1
0
 public static bool CanPublish(Repository vc, string path, bool isDir)
 {
     if (!vc.IsVersioned(path) && isDir)
     {
         return(true);
     }
     return(false);
 }
		public static bool CanPublish (Repository vc, string path, bool isDir) {
			if (!vc.IsVersioned (path) && isDir) 
				return true;
			return false;
		}