5 implementations of PublishAsync
aspire (2)
Projects\DotNetAppHostProject.cs (1)
371
public async Task<int>
PublishAsync
(PublishContext context, CancellationToken cancellationToken)
Projects\GuestAppHostProject.cs (1)
748
public async Task<int>
PublishAsync
(PublishContext context, CancellationToken cancellationToken)
Aspire.Cli.Tests (3)
Commands\NewCommandTests.cs (1)
1731
public Task<int>
PublishAsync
(PublishContext context, CancellationToken cancellationToken)
Commands\SecretCommandTests.cs (1)
117
public Task<int>
PublishAsync
(PublishContext context, CancellationToken cancellationToken) => throw new NotSupportedException();
TestServices\TestAppHostProjectFactory.cs (1)
149
public Task<int>
PublishAsync
(PublishContext context, CancellationToken cancellationToken)
1 reference to PublishAsync
aspire (1)
Commands\PipelineCommandBase.cs (1)
214
pendingRun = project.
PublishAsync
(publishContext, cancellationToken);