Skip to content

Commit af5e70c

Browse files
committed
Fixed missing namespace reference
1 parent fee3806 commit af5e70c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/ElectronNET.API/Runtime/Services/ElectronProcess/ElectronProcessActive.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using System.IO;
77
using System.Linq;
88
using System.Runtime.InteropServices;
9+
using System.Text.RegularExpressions;
910
using System.Threading;
1011
using System.Threading.Tasks;
1112
using ElectronNET.Common;
@@ -208,7 +209,7 @@ void Monitor_SocketIO_Failure(object sender, EventArgs e)
208209
this.process = new ProcessRunner("ElectronRunner");
209210
this.process.ProcessExited += Monitor_SocketIO_Failure;
210211
this.process.LineReceived += Read_SocketIO_Parameters;
211-
this.process.Run(startCmd, args, directoriy);
212+
this.process.Run(startCmd, args, directory);
212213

213214
await tcs.Task.ConfigureAwait(false);
214215

0 commit comments

Comments
 (0)