3 implementations of GetProjectItemsAndPropertiesAsync
aspire (1)
DotNet\DotNetCliRunner.cs (1)
773public async Task<(int ExitCode, JsonDocument? Output)> GetProjectItemsAndPropertiesAsync(FileInfo projectFile, string[] items, string[] properties, string[] targets, ProcessInvocationOptions options, CancellationToken cancellationToken)
Aspire.Cli.Tests (2)
Templating\DotNetTemplateFactoryTests.cs (1)
453public Task<(int ExitCode, JsonDocument? Output)> GetProjectItemsAndPropertiesAsync(FileInfo projectFile, string[] items, string[] properties, string[] targets, ProcessInvocationOptions options, CancellationToken cancellationToken)
TestServices\TestDotNetCliRunner.cs (1)
86public Task<(int ExitCode, JsonDocument? Output)> GetProjectItemsAndPropertiesAsync(FileInfo projectFile, string[] items, string[] properties, string[] targets, ProcessInvocationOptions options, CancellationToken cancellationToken)
2 references to GetProjectItemsAndPropertiesAsync
aspire (2)
Projects\AppHostInfoResolver.cs (1)
137var (exitCode, jsonDocument) = await runner.GetProjectItemsAndPropertiesAsync(
Projects\ProjectUpdater.cs (1)
319return await runner.GetProjectItemsAndPropertiesAsync(projectFile, items, properties, targets: [], new(), cancellationToken);