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