Я запускаю процесс для генерации классов c # с использованием инструмента GRPC из файла прото.Код отлично работает на моей машине для разработки, но после развертывания на Azure процесс запускается, но возвращает ExitCode = -1073740791
, а вывод - пустая строка.
Я зарегистрировал команду, которую выполняю, и если я пытаюсь выполнить вКонсоль Kudu
работает нормально, а файлы c # генерируются, как и ожидалось.
Команда выглядит следующим образом:
Tools\bin\tools\windows_x86\protoc.exe
-ID:\local\LocalAppData\GrpcTester\0969261f-bfa7-45a8-bba1-7e1ccd3818e7\protos
--csharp_out=D:\local\LocalAppData\GrpcTester\0969261f-bfa7-45a8-bba1-7e1ccd3818e7\csharpfiles
--grpc_out=D:\local\LocalAppData\GrpcTester\0969261f-bfa7-45a8-bba1-7e1ccd3818e7\csharpfiles
--plugin=protoc-gen-grpc="Tools\bin\tools\windows_x86\grpc_csharp_plugin.exe"
D:\local\LocalAppData\GrpcTester\0969261f-bfa7-45a8-bba1-7e1ccd3818e7\protos\mobile_backend.proto
private bool GenerateGRPCCSharpFiles(TestProject testProject)
{
bool succes = false;
var outputFolder = WorkspaceManager.GetProjectSubFolder(testProject.Id.ToString(), WorkspaceManager.CSharpFilesPath);
var protoFilesFolder = WorkspaceManager.GetProjectSubFolder(testProject.Id.ToString(), WorkspaceManager.ProtosPath);
// Install tools
RequireTools().Wait();
var protoc = ProtocPath();
var plugin = ProtocPluginPath();
logger.LogDebug($"GenerateGRPCCSharpFiles : protoc: {protoc}");
logger.LogDebug($"GenerateGRPCCSharpFiles : plugin: {plugin}");
//string protocol = Path.Combine(protoFilesFolder, protoFiles.FirstOrDefault().FileName);
string protocol = Directory.GetFiles(protoFilesFolder).FirstOrDefault();
var command = new string[]
{
$"-I{protoFilesFolder}",
$"--csharp_out={outputFolder}",
$"--grpc_out={outputFolder}",
$"--plugin=protoc-gen-grpc=\"{plugin}\"",
protocol,
};
try
{
using (Process process = new Process())
{
process.StartInfo.UseShellExecute = false;
process.StartInfo.FileName = protoc;
process.StartInfo.Arguments = string.Join(' ', command);
process.StartInfo.CreateNoWindow = true;
process.StartInfo.RedirectStandardOutput = true;
process.Start();
process.WaitForExit();
using (var streamReader = new StreamReader(process.StandardOutput.BaseStream))
{
var response = streamReader.ReadToEnd();
logger.LogDebug($"GenerateGRPCCSharpFiles: Completed output: {response.ToString()}");
}
succes = process.ExitCode == 0;
};
}
catch (Exception ex)
{
throw ex;
}
return succes;
}