Skip to content

Commit

Permalink
Fix key store config binding
Browse files Browse the repository at this point in the history
This was missed in dotnet#3033.
  • Loading branch information
drewnoakes committed Mar 25, 2024
1 parent 4768eb6 commit 25c9060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Aspire.Dashboard/Model/DashboardClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ X509CertificateCollection GetKeyStoreCertificate()

using var store = new X509Store(storeName: StoreName.My, storeLocation: StoreLocation.CurrentUser);

configuration.Bind("ResourceServiceClient:ClientCertificate:KeyStore");
configuration.Bind("ResourceServiceClient:ClientCertificate:KeyStore", store);

store.Open(OpenFlags.ReadOnly);

Expand Down

0 comments on commit 25c9060

Please sign in to comment.