Microsoft.CShar p.CSharpCodePro vider p = new CSharpCodeProvi der();
ICodeCompiler compiler = p.CreateCompile r();
CompilerParamet ers options = new CompilerParamet ers(new string[] {"mscorlib.dll" , "System.dll "}, myOutputAssembl yPath, true);
CompilerResults res = compiler.Compil eAssemblyFromFi leBatch(options , fileNames);
CompilerErrorCo llection errors = res.Errors;
Assembly a = res.CompiledAss embly;
"pnp" <pnp.@.softlab. ntua.gr> wrote in message news:O4ipbREYFH A.2996@TK2MSFTN GP10.phx.gbl...[color=blue]
> Is there a way to make a simple compiler that builds cs projects in a
> solution?
>
> thanks in advance,
> peter[/color]
Comment