3 implementations of GetProjectItemsAndPropertiesAsync
aspire (1)
DotNet\DotNetCliRunner.cs (1)
165public 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)
463public Task<(int ExitCode, JsonDocument? Output)> GetProjectItemsAndPropertiesAsync(FileInfo projectFile, string[] items, string[] properties, DotNetCliRunnerInvocationOptions options, CancellationToken cancellationToken)
TestServices\TestDotNetCliRunner.cs (1)
82public Task<(int ExitCode, JsonDocument? Output)> GetProjectItemsAndPropertiesAsync(FileInfo projectFile, string[] items, string[] properties, DotNetCliRunnerInvocationOptions options, CancellationToken cancellationToken)
2 references to GetProjectItemsAndPropertiesAsync
aspire (2)
Commands\InitCommand.cs (1)
617var (exitCode, jsonDoc) = await _runner.GetProjectItemsAndPropertiesAsync(
Projects\ProjectUpdater.cs (1)
179return await runner.GetProjectItemsAndPropertiesAsync(projectFile, items, properties, new(), cancellationToken);