How to get english Warnings and Errors from CS-Script

126 Views Asked by At

I use CS-Script to compile code at runtime. I do this like follow and read the generated Errors and Warnings after out of the ComipilingHistory:

var eval = CSScript.Evaluator;
var assembly = eval.CompileCode(code);

if (CSScript.CompilingHistory.Any()) {
   foreach (var err in CSScript.CompilingHistory.Last().Value.Result.Errors.Cast<CompilerError>()) {
      this.AddValidationResult(err, codeFile);
   }
}

The Problem is now, that I get german Messages for warnings. But I need the english ones. I work on a Machine with German Language. But Visual Studio is installed in english and when I compile the Code in Visual Studio, I will get english messages.

How can I configure, that CS-Script is also showing english Warnings and Errors?

Edit: I have now created a small sample to reproduce my problem:

System.Globalization.CultureInfo.DefaultThreadCurrentCulture = new System.Globalization.CultureInfo("en-US");
System.Globalization.CultureInfo.DefaultThreadCurrentUICulture = new System.Globalization.CultureInfo("en-US");


Microsoft.CSharp.CSharpCodeProvider provider = new CSharpCodeProvider();
CompilerParameters compilerparams = new CompilerParameters();
compilerparams.GenerateInMemory = false;
CompilerResults results = provider.CompileAssemblyFromSource(compilerparams, "this generates errors");

Now, I the results, there is the following error:

"Ein Namespace kann nicht direkt Member, wie z.B. Felder oder Methoden, enthalten."

My problem is now, that this message is in german. I should it get in english.

0

There are 0 best solutions below