13 references to AppHostHelper
aspire (6)
Commands\ExecCommand.cs (1)
160appHostCompatibilityCheck = await AppHostHelper.CheckAppHostCompatibilityAsync(_runner, InteractionService, effectiveAppHostProjectFile, _telemetry, ExecutionContext.WorkingDirectory, cancellationToken);
Commands\PipelineCommandBase.cs (2)
161appHostCompatibilityCheck = await AppHostHelper.CheckAppHostCompatibilityAsync(_runner, InteractionService, effectiveAppHostFile, _telemetry, ExecutionContext.WorkingDirectory, cancellationToken); 179var buildExitCode = await AppHostHelper.BuildAppHostAsync(_runner, InteractionService, effectiveAppHostFile, buildOptions, ExecutionContext.WorkingDirectory, cancellationToken);
Commands\RunCommand.cs (3)
177var buildExitCode = await AppHostHelper.BuildAppHostAsync(_runner, InteractionService, effectiveAppHostFile, buildOptions, ExecutionContext.WorkingDirectory, cancellationToken); 195appHostCompatibilityCheck = await AppHostHelper.CheckAppHostCompatibilityAsync(_runner, InteractionService, effectiveAppHostFile, _telemetry, ExecutionContext.WorkingDirectory, cancellationToken); 515return AppHostHelper.ComputeAuxiliarySocketPath(appHostPath, ExecutionContext.HomeDirectory.FullName);
Aspire.Cli.Tests (7)
Commands\RunCommandTests.cs (1)
427await AppHostHelper.BuildAppHostAsync(testRunner, testInteractionService, appHostProjectFile, options, workspace.WorkspaceRoot, CancellationToken.None);
Utils\AppHostHelperTests.cs (6)
18var socketPath = AppHostHelper.ComputeAuxiliarySocketPath(appHostPath, homeDirectory); 37var socketPath1 = AppHostHelper.ComputeAuxiliarySocketPath(appHostPath, homeDirectory); 38var socketPath2 = AppHostHelper.ComputeAuxiliarySocketPath(appHostPath, homeDirectory); 53var socketPath1 = AppHostHelper.ComputeAuxiliarySocketPath(appHostPath1, homeDirectory); 54var socketPath2 = AppHostHelper.ComputeAuxiliarySocketPath(appHostPath2, homeDirectory); 71var socketPath = AppHostHelper.ComputeAuxiliarySocketPath(appHostPath, homeDirectory);