Skip to content

Commit b92a541

Browse files
authored
Merge pull request #14017 from Mikejo5000/mikejo-link-fixes-2
Update links to redirected URLs
2 parents bdc63fe + 30b4402 commit b92a541

7 files changed

+8
-9
lines changed

docs/help-viewer/administrator-guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In this article, you learn to use the Help Viewer to deploy and manage local Hel
1616

1717
If your network environment allows clients to access the internet, you can use the **Help Content Manager** executable to deploy local Help content from the internet. For more information about *HlpCtntMgr.exe* command line syntax, see [Command-line arguments for the Help Content Manager](../help-viewer/command-line-arguments.md).
1818

19-
For information about creating content, creating an intranet service endpoint, and similar types of activities, see the [Help Viewer SDK](../extensibility/internals/microsoft-help-viewer-sdk.md).
19+
For information about creating content, creating an intranet service endpoint, and similar types of activities, see the [Help Viewer SDK](/previous-versions/visualstudio/visual-studio-2017/extensibility/internals/microsoft-help-viewer-sdk).
2020

2121
If you do not have internet access in your network environment, Help Viewer can deploy local Help content from the intranet or a network share. You can also disable Visual Studio IDE Help options by using [registry key overrides](../help-viewer/behavior-overrides.md) for functionality such as:
2222

@@ -142,4 +142,4 @@ Next, you need to package the content so it can be deployed to client computers.
142142
- [Command-line arguments for the Help Content Manager](../help-viewer/command-line-arguments.md)
143143
- [Override Help Viewer defaults](../help-viewer/behavior-overrides.md)
144144
- [Microsoft Help Viewer](../help-viewer/overview.md)
145-
- [Help Viewer SDK](../extensibility/internals/microsoft-help-viewer-sdk.md)
145+
- [Help Viewer SDK](/previous-versions/visualstudio/visual-studio-2017/extensibility/internals/microsoft-help-viewer-sdk)

docs/help-viewer/find-topics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ You might enter a search string that includes multiple words, such as "word1 wor
9898

9999
> [!IMPORTANT]
100100
> - Phrase searches are not supported. If you specify more than one word in a search string, returned topics contain all the words that you specified but not necessarily the exact phrase that you specified.
101-
> - Use logical operators to specify the relationship between words in your search phrase. You can include logical operators, such as AND, OR, NOT, and NEAR, to further refine your search. For example, if you search for "declaring NEAR union", search results include topics that contain the words "declaring" and "union" no more than a few words apart from each other. For more information, see [Logical operators in search expressions](../help-viewer/logical-operators-search-expressions.md).
101+
> - Use logical operators to specify the relationship between words in your search phrase. You can include logical operators, such as AND, OR, NOT, and NEAR, to further refine your search. For example, if you search for "declaring NEAR union", search results include topics that contain the words "declaring" and "union" no more than a few words apart from each other.
102102
103103
### Filters
104104

docs/msbuild/creating-forwarding-loggers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ Forwarding loggers improve logging efficiency by letting you choose the events y
3333

3434
## Multi-processor-aware loggers
3535

36-
When you build a project on a multi-processor system, the build messages from each processor are not automatically interleaved in a unified sequence. Instead, you must establish a message grouping priority by using the <xref:Microsoft.Build.Framework.BuildEventContext> class that is attached to every message. For more information about multi-processor building, see [Logging in a multi-processor environment](../msbuild/logging-in-a-multi-processor-environment.md).
36+
When you build a project on a multi-processor system, the build messages from each processor are not automatically interleaved in a unified sequence. Instead, you must establish a message grouping priority by using the <xref:Microsoft.Build.Framework.BuildEventContext> class that is attached to every message. For more information about multi-processor building, see [Logging in a multi-processor environment](writing-multi-processor-aware-loggers.md).
3737

3838
## Related content
3939

4040
- [Obtain build logs](../msbuild/obtaining-build-logs-with-msbuild.md)
4141
- [Build loggers](../msbuild/build-loggers.md)
42-
- [Logging in a multi-processor environment](../msbuild/logging-in-a-multi-processor-environment.md)
42+
- [Logging in a multi-processor environment](writing-multi-processor-aware-loggers.md)

docs/msbuild/msbuild-errors.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,3 @@ We're sorry! It looks like we couldn't find what you were looking for.
109109
- Use the [Microsoft Learn](/) toolbar to search
110110
- Browse the Knowledge Base for [Visual Studio troubleshooting](/troubleshoot/visualstudio/welcome-visual-studio/)
111111

112-
**Didn't mean to click?** [Remap or disable the `F1` help key](../ide/not-in-toc/change-f1-help-key.md)

docs/msbuild/msbuild-multitargeting-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ By using MSBuild, you can compile an application to run on any one of several ve
4545

4646
## Troubleshooting
4747

48-
You might encounter errors if you try to reference an assembly that is not part of the target context. For more information about these errors and what to do about them, see [Troubleshoot .NET Framework targeting errors](../msbuild/troubleshooting-dotnet-framework-targeting-errors.md).
48+
You might encounter errors if you try to reference an assembly that is not part of the target context. For more information about these errors and what to do about them, see [Troubleshoot .NET Framework targeting errors](/troubleshoot/developer/visualstudio/project-build/troubleshooting-dotnet-framework-targeting-errors).

docs/msbuild/obtaining-build-logs-with-msbuild.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,6 @@ For more information, see [Command-line reference](../msbuild/msbuild-command-li
101101

102102
- <xref:Microsoft.Build.Framework.LoggerVerbosity>
103103
- [Build loggers](../msbuild/build-loggers.md)
104-
- [Logging in a multi-processor environment](../msbuild/logging-in-a-multi-processor-environment.md)
104+
- [Logging in a multi-processor environment](writing-multi-processor-aware-loggers.md)
105105
- [Creating forwarding loggers](../msbuild/creating-forwarding-loggers.md)
106106
- [MSBuild concepts](../msbuild/msbuild-concepts.md)

docs/msbuild/what-s-new-in-msbuild-15-0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ MSBuild is now available as part of the [.NET Core SDK](https://dotnet.microsoft
1616

1717
MSBuild is now installed in a folder under each version of Visual Studio. For example, *C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild*. You can also use the following PowerShell module to locate MSBuild: [vssetup.powershell](https://github.com/Microsoft/vssetup.powershell).
1818

19-
MSBuild is no longer installed in the Global Assembly Cache. To reference MSBuild programmatically, use NuGet packages. For more information, see [Updating an existing application for MSBuild 15.0](../msbuild/updating-an-existing-application.md).
19+
MSBuild is no longer installed in the Global Assembly Cache. To reference MSBuild programmatically, use NuGet packages.
2020

2121
## Changed properties
2222

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy