public override string GetBaseText(FilePath sourcefile)
        {
            // The base file will not exist if the file has just been
            // added to svn and not committed
            var baseFile = Svn.GetPathToBaseText(sourcefile);

            return(File.Exists(baseFile) ? File.ReadAllText(baseFile) : "");
        }