我使用CSScriptLibrary.dll在我的应用程序中执行C#代码,该代码在Windows和Linux上运行。问题是,现在,我需要使用#pragma disable warning
来禁用可能出现的各种警告,以便在Mono上编译脚本,这是一个非常丑陋的黑客攻击。
// the following simple script will not execute on Mono due to a warning that a is not used.
var code = "public class Script { public object Run() { var a=1; return 2+3; }}"
// here is how the script is executed using CsScriptLibrary
try
{
var asm = new AsmHelper(CSScript.LoadCode(code, "cs", null, true));
// if we reach that point, the script compiled
var obj = asm.CreateAndAlignToInterface<IScript>("*");
// now run it:
var result=obj.Run();
}
catch (CompilerException e)
{
// on .net compiler exceptions are only raised when there are errors
// on mono I get an exception here, even for warnings like unused variable
}
我已经尝试设置CSScript的默认编译器参数,以指示单声道编译器忽略警告。这是我尝试的(基于Mono编译器的编译器开关的文档:
CSScript.GlobalSettings.DefaultArguments = "-warn:0 -warnaserror-";
但我没有成功,我甚至不确定这是否是正确的方法。无论如何,为了完整起见,我在此注意到CSScript.GlobalSettings.DefaultArguments
在CSScript中默认为/c /sconfig /co:/warn:0
。
是否有人知道如何让CSScript.LoadCode
忽略Mono上的警告或至少不将其视为错误?
答案 0 :(得分:0)
这是两个解决方案(在Oleg Shilo的帮助下找到)。您可以直接在脚本中包含所需的编译器选项:
//css_co -warn:0
using System;
...
或者您可以用CSScript.LoadCode
替换LoadWithConfig
,这允许直接传递编译器选项。像这样:
static public Assembly LoadCode(string scriptText, bool debugBuild, params string[] refAssemblies)
{
string tempFile = System.IO.Path.GetTempPath() + Guid.NewGuid().ToString() +".cs";
try
{
using (StreamWriter sw = new StreamWriter(tempFile))
sw.Write(scriptText);
return LoadWithConfig(scriptFile, null, debugBuild, CSScript.GlobalSettings, "-warn:0", refAssemblies);
}
finally
{
if (!debugBuild)
{
//delete temp file
}
}
}
应该注意,第二个解决方案将绕过在LoadCode中执行的内置程序集缓存。尽管缓存已编译的脚本对象很容易。