1 implementation of IPublishingStep
Aspire.Hosting (1)
Publishing\PublishingStep.cs (1)
15internal sealed class PublishingStep : IPublishingStep
49 references to IPublishingStep
Aspire.Hosting (15)
Publishing\IPublishingActivityProgressReporter.cs (1)
20Task<IPublishingStep> CreateStepAsync(string title, CancellationToken cancellationToken = default);
Publishing\Publisher.cs (1)
31var step = await progressReporter.CreateStepAsync(
Publishing\PublishingActivityProgressReporter.cs (1)
37public async Task<IPublishingStep> CreateStepAsync(string title, CancellationToken cancellationToken = default)
Publishing\PublishingExtensions.cs (7)
11/// Extension methods for <see cref="IPublishingStep"/> and <see cref="IPublishingTask"/> to provide direct operations. 23public static async Task<IPublishingStep> SucceedAsync( 24this IPublishingStep step, 40public static async Task<IPublishingStep> WarnAsync( 41this IPublishingStep step, 57public static async Task<IPublishingStep> FailAsync( 58this IPublishingStep step,
Publishing\ResourceContainerImageBuilder.cs (5)
53var step = await activityReporter.CreateStepAsync( 102private async Task BuildImageAsync(IPublishingStep? step, IResource resource, CancellationToken cancellationToken) 137private async Task BuildProjectContainerImageAsync(IResource resource, IPublishingStep? step, CancellationToken cancellationToken) 249private async Task BuildContainerImageFromDockerfileAsync(string resourceName, string contextPath, string dockerfilePath, string imageName, IPublishingStep? step, CancellationToken cancellationToken) 299IPublishingStep? step,
Aspire.Hosting.Azure (2)
AzurePublishingContext.cs (2)
78var step = await ProgressReporter.CreateStepAsync( 108private async Task WriteAzureArtifactsOutputAsync(IPublishingStep step, DistributedApplicationModel model, AzureEnvironmentResource environment, CancellationToken cancellationToken)
Aspire.Hosting.Docker (1)
DockerComposePublishingContext.cs (1)
129var step = await progressReporter.CreateStepAsync(
Aspire.Hosting.Tests (31)
Publishing\PublishingActivityProgressReporterTests.cs (24)
28var step = await reporter.CreateStepAsync(title, CancellationToken.None); 59var step = await reporter.CreateStepAsync("Parent Step", CancellationToken.None); 111var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 130var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 161var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 192var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 196var dummyStep = await reporter.CreateStepAsync("Dummy Step", CancellationToken.None); 214var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 233var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 268var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 330var step1 = await reporter.CreateStepAsync("Step 1", CancellationToken.None); 331var step2 = await reporter.CreateStepAsync("Step 2", CancellationToken.None); 332var step3 = await reporter.CreateStepAsync("Step 3", CancellationToken.None); 367var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 384var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 404var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 423var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 456await using var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 501var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 516var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 544var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 578var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 603var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 638var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None);
Publishing\PublishingExtensionsTests.cs (7)
20await using var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 39await using var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 42var result = await step.SucceedAsync("Success message", CancellationToken.None); 57await using var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 76await using var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 94await using var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None); 112await using var step = await reporter.CreateStepAsync("Test Step", CancellationToken.None);