fix publish script

This commit is contained in:
Alex Bezdieniezhnykh
2025-04-24 22:07:34 +03:00
parent 4ae25ceecf
commit 5ff4ee58b9
4 changed files with 6 additions and 10 deletions
@@ -45,7 +45,7 @@ public class InferenceClient : IInferenceClient
process.OutputDataReceived += (_, e) => { if (e.Data != null) Console.WriteLine(e.Data); };
process.ErrorDataReceived += (_, e) => { if (e.Data != null) Console.WriteLine(e.Data); };
//process.Start();
process.Start();
}
catch (Exception e)
{