Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Make ProcessCertificateTrustConfigAsync internal
  • Loading branch information
danegsta committed Nov 4, 2025
commit 3767b8b3e2e65b181724b4f9728e12e9c0f0868f
2 changes: 1 addition & 1 deletion src/Aspire.Hosting/ApplicationModel/ResourceExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ internal static IEnumerable<NetworkIdentifier> GetSupportedNetworks(this IResour
/// <param name="certificateDirectoryPathsFactory">A function that takes the active <see cref="CertificateTrustScope"/> and returns a <see cref="ReferenceExpression"/> representing path(s) to a directory containing the custom certificates for the resource.</param>
/// <param name="cancellationToken">A cancellation token to observe while processing.</param>
/// <returns>A task that represents the asynchronous operation.</returns>
public static async ValueTask<(CertificateTrustScope, X509Certificate2Collection?)> ProcessCertificateTrustConfigAsync(
internal static async ValueTask<(CertificateTrustScope, X509Certificate2Collection?)> ProcessCertificateTrustConfigAsync(
this IResource resource,
DistributedApplicationExecutionContext executionContext,
// (unprocessed, processed, exception, isSensitive)
Expand Down
Loading