Skip to content

Commit e83ca1c

Browse files
authored
fix broken links (#43191)
1 parent cbff564 commit e83ca1c

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.openpublishing.redirection.visual-basic.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,10 @@
255255
"source_path_from_root": "/docs/visual-basic/language-reference/error-messages/class-classname-cannot-be-found.md",
256256
"redirect_url": "/dotnet/visual-basic/language-reference/error-messages/bc31098"
257257
},
258+
{
259+
"source_path_from_root": "/docs/visual-basic/language-reference/error-messages/late-bound-resolution;-runtime-errors-could-occur.md",
260+
"redirect_url": "/dotnet/visual-basic/language-reference/error-messages/late-bound-resolution-runtime-errors-could-occur"
261+
},
258262
{
259263
"source_path_from_root": "/docs/visual-basic/language-reference/queries/queries.md",
260264
"redirect_url": "/dotnet/visual-basic/language-reference/queries/index",

docs/core/diagnostics/observability-with-otel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ This topic is continued with a couple of example walkthroughs for using OpenTele
9696

9797
[.NET Aspire](/dotnet/aspire/get-started/aspire-overview) is a set of extensions to .NET to make it easy to create and work with distributed applications. One of the benefits of using .NET Aspire is that telemetry is built in, using the OpenTelemetry libraries for .NET. The default project templates for .NET Aspire contain a `ServiceDefaults` project, part of which is to setup and configure OTel. The Service Defaults project is referenced and initialized by each service in a .NET Aspire solution.
9898

99-
The Service Defaults project template includes the OTel SDK, ASP.NET, HttpClient and Runtime Instrumentation packages, and those are configured in the [`Extensions.cs`](https://github.com/dotnet/aspire/blob/main/src/Aspire.ProjectTemplates/templates/aspire-servicedefaults/Extensions.cs) file. For exporting telemetry .NET Aspire includes the OTLP exporter by default so that it can provide telemetry visualization using the Aspire Dashboard.
99+
The Service Defaults project template includes the OTel SDK, ASP.NET, HttpClient and Runtime Instrumentation packages, and those are configured in the [`Extensions.cs`](https://github.com/dotnet/aspire/blob/main/src/Aspire.ProjectTemplates/templates/aspire-servicedefaults/9.0/Extensions.cs) file. For exporting telemetry .NET Aspire includes the OTLP exporter by default so that it can provide telemetry visualization using the Aspire Dashboard.
100100

101101
The Aspire Dashboard is designed to bring telemetry observation to the local debug cycle, which enables developers to not only ensure that the applications are producing telemetry, but also use that telemetry to diagnose those applications locally. Being able to observe the calls between services is proving to be just as useful at debug time as in production. The .NET Aspire dashboard is launched automatically when you F5 the `AppHost` Project from Visual Studio or `dotnet run` the `AppHost` project.
102102

docs/visual-basic/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1104,7 +1104,7 @@ items:
11041104
- name: Lambda expressions are not valid in the first expression of a 'Select Case' statement
11051105
href: language-reference/error-messages/lambda-expressions-are-not-valid-in-the-first-expression-of-select-case.md
11061106
- name: Late bound resolution; runtime errors could occur
1107-
href: language-reference/error-messages/late-bound-resolution;-runtime-errors-could-occur.md
1107+
href: language-reference/error-messages/late-bound-resolution-runtime-errors-could-occur.md
11081108
- name: Latebound overload resolution cannot be applied to '<procedurename>' because the accessing instance is an interface type
11091109
href: language-reference/error-messages/latebound-overload-resolution-cannot-be-applied.md
11101110
- name: Leading '.' or '!' can only appear inside a 'With' statement

0 commit comments

Comments
 (0)