1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
using System;
using System.IO;
using System.Diagnostics;
using Mono.Addins;
using TextEditor.CompilerService;
[assembly:Addin]
[assembly:AddinDependency ("TextEditor.CompilerService", "1.0")]
namespace TextEditor.CompilerService.CSharp
{
[Extension]
public class CSharpCompiler: ICompiler
{
public bool CanCompile (string file)
{
return Path.GetExtension (file) == ".cs";
}
public string Compile (string file, string outFile)
{
string messages = "";
ProcessStartInfo ps = new ProcessStartInfo ();
ps.FileName = "mcs";
ps.Arguments = "file";
ps.UseShellExecute = false;
ps.RedirectStandardOutput = true;
Process p = Process.Start (ps);
string line = null;
while ((line = p.StandardOutput.ReadLine ()) != null) {
messages += line + "\n";
}
return messages;
}
}
}
|