3 implementations of GetProjectItemsAndPropertiesAsync
aspire (1)
DotNet\DotNetCliRunner.cs (1)
159
public async Task<(int ExitCode, JsonDocument? Output)>
GetProjectItemsAndPropertiesAsync
(FileInfo projectFile, string[] items, string[] properties, DotNetCliRunnerInvocationOptions options, CancellationToken cancellationToken)
Aspire.Cli.Tests (2)
Templating\DotNetTemplateFactoryTests.cs (1)
432
public Task<(int ExitCode, JsonDocument? Output)>
GetProjectItemsAndPropertiesAsync
(FileInfo projectFile, string[] items, string[] properties, DotNetCliRunnerInvocationOptions options, CancellationToken cancellationToken)
TestServices\TestDotNetCliRunner.cs (1)
82
public Task<(int ExitCode, JsonDocument? Output)>
GetProjectItemsAndPropertiesAsync
(FileInfo projectFile, string[] items, string[] properties, DotNetCliRunnerInvocationOptions options, CancellationToken cancellationToken)
3 references to GetProjectItemsAndPropertiesAsync
aspire (3)
Commands\InitCommand.cs (1)
528
var (exitCode, jsonDoc) = await _runner.
GetProjectItemsAndPropertiesAsync
(
Projects\ProjectLocator.cs (1)
468
var (exitCode, jsonDocument) = await runner.
GetProjectItemsAndPropertiesAsync
(
Projects\ProjectUpdater.cs (1)
179
return await runner.
GetProjectItemsAndPropertiesAsync
(projectFile, items, properties, new(), cancellationToken);