10 implementations of UseOrFindAppHostProjectFileAsync
aspire (1)
Projects\ProjectLocator.cs (1)
214
public async Task<FileInfo?>
UseOrFindAppHostProjectFileAsync
(FileInfo? projectFile, CancellationToken cancellationToken = default)
Aspire.Cli.Tests (9)
Commands\ExecCommandTests.cs (3)
169
public Task<FileInfo?>
UseOrFindAppHostProjectFileAsync
(FileInfo? projectFile, CancellationToken cancellationToken)
187
public Task<FileInfo?>
UseOrFindAppHostProjectFileAsync
(FileInfo? projectFile, CancellationToken cancellationToken)
213
public Task<FileInfo?>
UseOrFindAppHostProjectFileAsync
(FileInfo? projectFile, CancellationToken cancellationToken)
Commands\RunCommandTests.cs (4)
93
public Task<FileInfo?>
UseOrFindAppHostProjectFileAsync
(FileInfo? projectFile, CancellationToken cancellationToken)
151
public Task<FileInfo?>
UseOrFindAppHostProjectFileAsync
(FileInfo? projectFile, CancellationToken cancellationToken)
169
public Task<FileInfo?>
UseOrFindAppHostProjectFileAsync
(FileInfo? projectFile, CancellationToken cancellationToken)
1142
public Task<FileInfo?>
UseOrFindAppHostProjectFileAsync
(FileInfo? projectFile, CancellationToken cancellationToken)
TestServices\NoProjectFileProjectLocator.cs (1)
10
public Task<FileInfo?>
UseOrFindAppHostProjectFileAsync
(FileInfo? projectFile, CancellationToken cancellationToken)
TestServices\TestProjectLocator.cs (1)
16
public async Task<FileInfo?>
UseOrFindAppHostProjectFileAsync
(FileInfo? projectFile, CancellationToken cancellationToken)
5 references to UseOrFindAppHostProjectFileAsync
aspire (5)
Commands\AddCommand.cs (1)
81
var effectiveAppHostProjectFile = await _projectLocator.
UseOrFindAppHostProjectFileAsync
(passedAppHostProjectFile, cancellationToken);
Commands\ExecCommand.cs (1)
133
var effectiveAppHostProjectFile = await _projectLocator.
UseOrFindAppHostProjectFileAsync
(passedAppHostProjectFile, cancellationToken);
Commands\PublishCommandBase.cs (1)
100
var effectiveAppHostFile = await _projectLocator.
UseOrFindAppHostProjectFileAsync
(passedAppHostProjectFile, cancellationToken);
Commands\RunCommand.cs (1)
114
var effectiveAppHostFile = await _projectLocator.
UseOrFindAppHostProjectFileAsync
(passedAppHostProjectFile, cancellationToken);
Commands\UpdateCommand.cs (1)
41
var projectFile = await _projectLocator.
UseOrFindAppHostProjectFileAsync
(passedAppHostProjectFile, cancellationToken);