【发布时间】:2017-07-27 10:43:47
【问题描述】:
我有可执行的 abcd.exe(它包含/合并了许多 .dll)。 是否可以为 abcd.exe 创建 Azure Function 并在 Azure Cloud Functions 中运行它?
abcd.exe 应用程序:
System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd.exe";
**startInfo.Arguments = "/C abcd.exe";**
process.StartInfo = startInfo;
process.Start();
abcd.exe 应用程序没有 UI (GUI),但它是数学和科学应用程序,它依赖于许多在 abcd.exe 中合并的 .dll。
谢谢
【问题讨论】:
标签: c# azure azure-functions