示例#1
0
 /// <summary>
 /// Determines whether [is transformation file] [the specified file name].
 /// </summary>
 /// <param name="fileName">Name of the file.</param>
 /// <returns>[True] if file is transformation file, otherwise [False]</returns>
 private bool IsTransformationFile(string fileName)
 {
     return(TransformationProvider.IsTransformationFile(fileName,
                                                        Options.Options.TransfomationFileNameRegexp,
                                                        Options.Options.SourceFileRegexpMatchIndex));
 }