gpt4 book ai didi

c# - 在 Azure 上使用 Codedom/CSharpCodeProvider 进行动态编译

转载 作者:行者123 更新时间:2023-11-30 22:00:51 25 4
gpt4 key购买 nike

我使用以下代码动态编译一些代码并将生成的 DLL 存储在 Azure 存储中。

当我在本地运行时一切正常,但在使用 Azure 部署的版本时则不起作用。

我现在已经尝试了很多事情。

这是我正在使用的最新版本。这不会引发任何错误,但不会存储 DLL(存储方法工作正常,因为它在许多其他地方使用)。我假设权限有问题或者 DLL 没有存储为文件。

public Tuple<bool,string> compileAndStoreCodeAsDLL(Guid actionID, string actionName, string actionMethod, string code)
{
string newFileName = "AncillaryTestMethods_" + actionName + ".dll";

try
{

// Compile the code
CSharpCodeProvider codeProvider = new CSharpCodeProvider();
System.CodeDom.Compiler.CompilerParameters parameters = new CompilerParameters();
parameters.GenerateExecutable = false;
parameters.OutputAssembly = newFileName;
parameters.GenerateInMemory = false;
parameters.TempFiles = new TempFileCollection(".", true);
parameters.ReferencedAssemblies.Add("System.dll");
parameters.ReferencedAssemblies.Add("System.Core.dll");
parameters.ReferencedAssemblies.Add("Microsoft.CSharp.dll");

CompilerResults results = codeProvider.CompileAssemblyFromSource(parameters, code);

MemoryStream stream = new MemoryStream();
BinaryFormatter formatter = new BinaryFormatter();
formatter.Serialize(stream, results.CompiledAssembly);

// Store the code in the current firm's azure directory/ActionDLLs
this.putFile(stream, newFileName, "ActionDLLs");

// Return ok
return new Tuple<bool, string>(true, null);
}
catch (Exception e)
{
// Return fail
return new Tuple<bool, string>(true, e.Message);
}
}

我从这段代码开始(它也在本地工作):

        public Tuple<bool,string> compileAndStoreCodeAsDLL(Guid actionID, string actionName, string actionMethod, string code)
{
string newFileName = "AncillaryTestMethods_" + actionName + ".dll";

try
{

// Compile the code
CSharpCodeProvider codeProvider = new CSharpCodeProvider();
System.CodeDom.Compiler.CompilerParameters parameters = new CompilerParameters();
parameters.GenerateExecutable = false;
parameters.OutputAssembly = newFileName;
parameters.ReferencedAssemblies.Add("System.dll");
parameters.ReferencedAssemblies.Add("System.Core.dll");
parameters.ReferencedAssemblies.Add("Microsoft.CSharp.dll");

CompilerResults results = codeProvider.CompileAssemblyFromSource(parameters, code);

// Store the code in the current firm's azure directory/ActionDLLs
this.putFile(results.CompiledAssembly.GetFile(newFileName), newFileName, "ActionDLLs");

// Return ok
return new Tuple<bool, string>(true, null);
}
catch (Exception e)
{
// Return fail
return new Tuple<bool, string>(true, e.Message);
}
}

但在 Azure 上抛出错误“生成 Win32 资源时出错:访问被拒绝。无法删除用于默认 Win32 资源的临时文件 'd:windows\system32\inetsrv...tmp' - 系统找不到该文件指定。

这大概与Azure权限相关,所以我尝试了上面的代码。

任何人都可以建议进行任何更改以使此功能在 Azure 中运行吗?

最佳答案

经过大约 17 个小时的努力,我终于成功了。情况非常严峻,我什至尝试连接 FluidSharp 库中的 Roslyn 类,但它们有自己的重大问题。

这里存在三个核心问题:

  1. Codedom 似乎忽略了自己的 TempFiles 属性,因此在 Azure 中,这些属性始终写入无法访问的 inetsrv 目录。
  2. Codedom 的“GenerateInMemory”要么不起作用,要么它的名称完全具有误导性。
  3. 我需要以提升的权限启动我的 WebRole(对此不能 100% 确定,但尚未删除代码)

解决方案是:

  1. 在 Azure 实例上创建一些本地存储空间。
  2. 将 DLL 写入本地存储。
  3. 捕获与删除 .TMP 文件相关的任何错误并忽略它们。我发现这些错误意味着 CompiledAssembly 中没有数据,但 DLL 仍然被写入本地存储。
  4. 不用费心GenerateInMemory
  5. 提升权限

希望这可以为其他人省去很多麻烦!

关于c# - 在 Azure 上使用 Codedom/CSharpCodeProvider 进行动态编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28217690/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com