7 references to Deploy
Aspire.Hosting (4)
DistributedApplicationRunner.cs (2)
49await activityReporter.CompletePublishAsync(completionMessage: null, completionState: null, isDeploy: publishingOptions.Value.Deploy, cancellationToken: stoppingToken).ConfigureAwait(false); 64await activityReporter.CompletePublishAsync(completionMessage: ex.Message, completionState: CompletionState.CompletedWithError, isDeploy: publishingOptions.Value.Deploy, cancellationToken: stoppingToken).ConfigureAwait(false);
Publishing\Publisher.cs (2)
61if (options.Value.Deploy) 95if (options.Value.Deploy)
Aspire.Hosting.Tests (3)
PublishingTests.cs (3)
219Assert.False(publishingOptions.Value.Deploy, "Deploy should default to false."); 230Assert.True(publishingOptions.Value.Deploy, "Deploy should be true when configured."); 241Assert.True(publishingOptions.Value.Deploy, "Deploy should be true when set via command line.");