21 references to ExecuteAsync
InteractiveHost.UnitTests (20)
AbstractInteractiveHostTests.cs (1)
139var task = await Host.ExecuteAsync(code);
InteractiveHostCoreInitTests.cs (6)
61await Host.ExecuteAsync(@"ReferencePaths"); 65await Host.ExecuteAsync(@"SourcePaths"); 70await Host.ExecuteAsync("SourcePaths.Add(@\"" + srcDir + "\");"); 72await Host.ExecuteAsync(@"SourcePaths"); 80await Host.ExecuteAsync(@"ReferencePaths"); 87await Host.ExecuteAsync(@"typeof(Metadata.ICSProp)");
InteractiveHostDesktopInitTests.cs (6)
36await Host.ExecuteAsync(@"ReferencePaths"); 40await Host.ExecuteAsync(@"SourcePaths"); 45await Host.ExecuteAsync("SourcePaths.Add(@\"" + srcDir + "\");"); 47await Host.ExecuteAsync(@"SourcePaths"); 55await Host.ExecuteAsync(@"ReferencePaths"); 62await Host.ExecuteAsync(@"typeof(Metadata.ICSProp)");
InteractiveHostDesktopTests.cs (6)
117await Host.ExecuteAsync(MethodWithInfiniteLoop + "\r\nfoo()"); 121await Host.ExecuteAsync(MethodWithInfiniteLoop + "\r\nfoo()"); 138var executeTask = Host.ExecuteAsync(@" 1000await Host.ExecuteAsync(@"System.IntPtr.Size"); 1008await Host.ExecuteAsync(@"System.IntPtr.Size"); 1016await Host.ExecuteAsync(@"System.IntPtr.Size");
StressTests.cs (1)
54await host.ExecuteAsync("1+1").ConfigureAwait(false);
Microsoft.CodeAnalysis.EditorFeatures (1)
Interactive\InteractiveSession.cs (1)
325var result = await Host.ExecuteAsync(text).ConfigureAwait(false);