The following code can be successfully executed in LINQPad, but after executing it in LA, there is no output or response.
I've encountered a similar situation before. Can we add a prompt message to the output pane for this scenario?
/*/ role exeProgram; nuget Edgettssharp\Edge_tts_sharp; /*/ //.
using Edge_tts_sharp;
script.setup(trayIcon: true, sleepExit: true);
//..
var voice = Edge_tts.GetVoice().FirstOrDefault(i => i.Name == "Microsoft Server Speech Text to Speech Voice (zh-CN, XiaoxiaoNeural)");
Edge_tts.PlayText("hello world", voice);
I've encountered a similar situation before. Can we add a prompt message to the output pane for this scenario?