You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Aspire.Dashboard/Components/Controls/LogViewer.razor.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ public async ValueTask DisposeAsync()
77
77
}
78
78
catch(JSDisconnectedException)
79
79
{
80
-
// Per https://learn.microsoft.com/en-us/aspnet/core/blazor/javascript-interoperability/?view=aspnetcore-7.0#javascript-interop-calls-without-a-circuit
80
+
// Per https://learn.microsoft.com/aspnet/core/blazor/javascript-interoperability/?view=aspnetcore-7.0#javascript-interop-calls-without-a-circuit
81
81
// this is one of the calls that will fail if the circuit is disconnected, and we just need to catch the exception so it doesn't pollute the logs
Copy file name to clipboardExpand all lines: src/Aspire.Dashboard/Components/Dialogs/SettingsDialog.razor.cs
+1-1
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ public async ValueTask DisposeAsync()
83
83
}
84
84
catch(JSDisconnectedException)
85
85
{
86
-
// Per https://learn.microsoft.com/en-us/aspnet/core/blazor/javascript-interoperability/?view=aspnetcore-7.0#javascript-interop-calls-without-a-circuit
86
+
// Per https://learn.microsoft.com/aspnet/core/blazor/javascript-interoperability/?view=aspnetcore-7.0#javascript-interop-calls-without-a-circuit
87
87
// this is one of the calls that will fail if the circuit is disconnected, and we just need to catch the exception so it doesn't pollute the logs
Copy file name to clipboardExpand all lines: src/Aspire.Hosting.Azure.Provisioning/UserSecretsPathHelper.cs
+4-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,10 @@ namespace Aspire.Hosting.Azure;
5
5
6
6
// Copied from https://github.com/dotnet/runtime/blob/213833ea99b79a4b494b2935e1ccb10b93cd4cbc/src/libraries/Microsoft.Extensions.Configuration.UserSecrets/src/PathHelper.cs
7
7
8
-
publicclassUserSecretsPathHelper
8
+
/// <summary>
9
+
/// Provides helper methods for working with user secrets in a location outside of source control.
0 commit comments