9 references to Deploy
Aspire.Hosting (6)
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 (4)
21if (options.Value.OutputPath == null && !options.Value.Deploy) 45if (options.Value.Deploy) 62var (message, state) = GetTaskInfo(targetResources, options.Value.Deploy); 78if (options.Value.Deploy)
Aspire.Hosting.Tests (3)
PublishingTests.cs (3)
180Assert.False(publishingOptions.Value.Deploy, "Deploy should default to false."); 191Assert.True(publishingOptions.Value.Deploy, "Deploy should be true when configured."); 202Assert.True(publishingOptions.Value.Deploy, "Deploy should be true when set via command line.");