示例#1
0
 public static bool IsCompileableFile(MonoDevelop.Projects.Project p, ProjectFile file, out Microsoft.CodeAnalysis.SourceCodeKind sck)
 {
     sck = file.SourceCodeKind;
     return(p.IsCompileable(file.FilePath));
 }
示例#2
0
 public static bool IsCompileableFile(ProjectFile file, out Microsoft.CodeAnalysis.SourceCodeKind sck)
 => IsCompileableFile(null, file, out sck);