5 implementations of GetUserSecretsIdAsync
aspire (2)
Projects\DotNetAppHostProject.cs (1)
522public async Task<string?> GetUserSecretsIdAsync(FileInfo projectFile, bool autoInit, CancellationToken cancellationToken)
Projects\GuestAppHostProject.cs (1)
1376public Task<string?> GetUserSecretsIdAsync(FileInfo appHostFile, bool autoInit, CancellationToken cancellationToken)
Aspire.Cli.Tests (3)
Commands\NewCommandTests.cs (1)
1756public Task<string?> GetUserSecretsIdAsync(FileInfo appHostFile, bool autoInit, CancellationToken cancellationToken)
Commands\SecretCommandTests.cs (1)
115public Task<string?> GetUserSecretsIdAsync(FileInfo appHostFile, bool autoInit, CancellationToken cancellationToken) => Task.FromResult<string?>(userSecretsId);
TestServices\TestAppHostProjectFactory.cs (1)
185public Task<string?> GetUserSecretsIdAsync(FileInfo appHostFile, bool autoInit, CancellationToken cancellationToken)
1 reference to GetUserSecretsIdAsync
aspire (1)
Secrets\SecretStoreResolver.cs (1)
42var userSecretsId = await project.GetUserSecretsIdAsync(appHostFile, autoInit, cancellationToken);