4 references to RunAsync
dotnet-watch (2)
Watch\DotNetWatcher.cs (1)
98
var processTask = context.ProcessRunner.
RunAsync
(processSpec, context.Logger, launchResult: null, combinedCancellationSource.Token);
Watch\MsBuildFileSetFactory.cs (1)
73
var exitCode = await processRunner.
RunAsync
(processSpec, logger, launchResult: null, cancellationToken);
Microsoft.DotNet.HotReload.Watch (2)
HotReload\CompilationHandler.cs (1)
174
var processTask = _context.ProcessRunner.
RunAsync
(processSpec, clientLogger, launchResult, processTerminationSource.Token);
HotReload\HotReloadDotNetWatcher.cs (1)
1291
var success = await _context.ProcessRunner.
RunAsync
(processSpec, _context.Logger, launchResult: null, cancellationToken) == 0;