static CompilationPipeline()
 {
     CompilationPipeline.SubscribeToEvents(EditorCompilationInterface.Instance);
 }
 public static string GetAssemblyDefinitionFilePathFromScriptPath(string sourceFilePath)
 {
     return(CompilationPipeline.GetAssemblyDefinitionFilePathFromScriptPath(EditorCompilationInterface.Instance, sourceFilePath));
 }
 public static string GetAssemblyDefinitionFilePathFromAssemblyName(string assemblyName)
 {
     return(CompilationPipeline.GetAssemblyDefinitionFilePathFromAssemblyName(EditorCompilationInterface.Instance, assemblyName));
 }
 public static Assembly[] GetAssemblies()
 {
     return(CompilationPipeline.GetAssemblies(EditorCompilationInterface.Instance));
 }