1 write to Options
Microsoft.DotNet.RemoteExecutor (1)
RemoteInvokeHandle.cs (1)
26Options = options;
12 references to Options
Microsoft.DotNet.RemoteExecutor (12)
RemoteInvokeHandle.cs (12)
107int halfTimeOut = Options.TimeOut == Timeout.Infinite ? Options.TimeOut : Options.TimeOut / 2; 146description.AppendLine($"Timed out at {DateTime.Now} after {Options.TimeOut}ms waiting for remote process."); 228FileInfo exceptionFileInfo = new FileInfo(Options.ExceptionFile); 231throw new RemoteExecutionException(File.ReadAllText(Options.ExceptionFile)); 234if (Options.CheckExitCode) 236int expected = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? Options.ExpectedExitCode : unchecked((sbyte)Options.ExpectedExitCode); 239Assert.True(expected == actual, $"Exit code was {Process.ExitCode} but it should have been {Options.ExpectedExitCode}"); 244if (File.Exists(Options.ExceptionFile)) 246File.Delete(Options.ExceptionFile);