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