Skip to content

Commit 4456293

Browse files
committed
fix links
1 parent 60cb45b commit 4456293

19 files changed

+24
-25
lines changed

docs/containers/tutorial-kubernetes-tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To leverage this new functionality, you'll need:
3636
[Creating an AKS cluster](/azure/aks/kubernetes-walkthrough-portal#create-an-aks-cluster). Be sure to [connect to the cluster](/azure/aks/kubernetes-walkthrough#connect-to-the-cluster) from your development workstation.
3737

3838
1. Helm CLI installed on your development workstation. For more information
39-
see [Installing Helm](https://github.com/kubernetes/helm/blob/master/docs/install.md).
39+
see [Installing Helm](https://github.com/helm/helm-www/blob/master/content/en/docs/helm/helm_install.md).
4040

4141
1. Helm configured against your AKS cluster by using the `helm init` command. For more information on how to do this, see [How to configure Helm](/azure/aks/kubernetes-helm#configure-helm).
4242
::: moniker-end

docs/deployment/how-to-check-for-application-updates-programmatically-using-the-clickonce-deployment-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ ClickOnce provides two ways to update an application once it is deployed. In the
4040

4141
### Use Mage.exe to deploy an application that checks for updates programmatically
4242

43-
- Follow the instructions for deploying your application using Mage.exe as explained in [Walkthrough: Manually deploy a ClickOnce application](../deployment/walkthrough-manually-deploying-a-clickonce-application.md). When calling Mage.exe to generate the deployment manifest, make sure to use the command-line switch `providerUrl`, and to specify the URL where ClickOnce should check for updates. If your application will update from [http://www.adatum.com/MyApp](http://www.adatum.com/MyApp), for example, your call to generate the deployment manifest might look like this:
43+
- Follow the instructions for deploying your application using Mage.exe as explained in [Walkthrough: Manually deploy a ClickOnce application](../deployment/walkthrough-manually-deploying-a-clickonce-application.md). When calling Mage.exe to generate the deployment manifest, make sure to use the command-line switch `providerUrl`, and to specify the URL where ClickOnce should check for updates. If your application will update from `http://www.adatum.com/MyApp`, for example, your call to generate the deployment manifest might look like this:
4444

4545
```cmd
4646
mage -New Deployment -ToFile WindowsFormsApp1.application -Name "My App 1.0" -Version 1.0.0.0 -AppManifest 1.0.0.0\MyApp.manifest -providerUrl http://www.adatum.com/MyApp/MyApp.application

docs/extensibility/private-galleries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ You can share the controls, templates, and tools that you develop by posting the
3636

3737
5. In the **URL** field, enter the URL of the Atom feed or SharePoint site that is hosting the private gallery.
3838

39-
1. If the host is an Atom feed that connects to the private gallery, the URL would resemble this one: http://www.mywebsite/mygallery/atom.xml. This URL can refer to a file or a network path.
39+
1. If the host is an Atom feed that connects to the private gallery, the URL would resemble this one: `http://www.mywebsite/mygallery/atom.xml`. This URL can refer to a file or a network path.
4040

41-
2. If the host is a SharePoint site, the URL would resemble this one: http://mysharepoint/sites/mygallery/forms/AllItems.aspx.
41+
2. If the host is a SharePoint site, the URL would resemble this one: `http://mysharepoint/sites/mygallery/forms/AllItems.aspx`.
4242

4343
### Manage private galleries
4444
An administrator can make a private gallery available to several computers at the same time by modifying the system registry on each computer. To accomplish this, create a *.pkgdef* file that describes the new registry keys and their values. The format of this file is as follows.

docs/extensibility/roslyn-analyzers-and-code-aware-library-for-immutablearrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,4 +306,4 @@ You can see all the finished code [here](https://github.com/DustinCampbell/CoreF
306306
* [Completed code on GitHub](https://github.com/DustinCampbell/CoreFxAnalyzers/tree/master/Source/CoreFxAnalyzers)
307307
* [Several examples on GitHub, grouped into three kinds of analyzers](https://github.com/dotnet/roslyn/blob/master/docs/analyzers/Analyzer%20Samples.md)
308308
* [Other docs on the GitHub OSS site](https://github.com/dotnet/roslyn/tree/master/docs/analyzers)
309-
* [FxCop rules implemented with Roslyn analyzers on GitHub](https://github.com/dotnet/roslyn/tree/master/src/Diagnostics/FxCop)
309+
* [FxCop rules implemented with Roslyn analyzers on GitHub](https://github.com/dotnet/roslyn/tree/master/src/Features/Core/Portable/Diagnostics/Analyzers)

docs/ide/quickstart-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ You're now ready to add a bit of Python code to implement a minimal web app.
177177

178178
3. Select **Debug > Start Without Debugging** (**Ctrl**+**F5**), which saves changes to files and runs the app.
179179

180-
4. A command window appears with the message "* Running in <https://localhost:4449/>", and a browser window should open to `localhost:4449` where you see the message, "Hello, Python!" The GET request also appears in the command window with a status of 200.
180+
4. A command window appears with the message **Running in https:\//localhost:4449**, and a browser window should open to `localhost:4449` where you see the message, "Hello, Python!" The GET request also appears in the command window with a status of 200.
181181

182182
If a browser does not open automatically, start the browser of your choice and navigate to `localhost:4449`.
183183

docs/javascript/publish-nodejs-app-azure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ and it is accessible at the URL created for the Azure App Service (by default th
173173
* If the node.exe process dies (that is, an unhandled exception occurs), the container restarts.
174174
* When the container starts up, it runs through various heuristics to figure out
175175
how to start the Node.js process. Details of the implementation can be seen at
176-
[generateStartupCommand.js](https://github.com/Azure-App-Service/node/blob/master/8.9.4/startup/generateStartupCommand.js).
176+
[generateStartupCommand.js](https://github.com/Azure-App-Service/node/).
177177
* You can connect to the running container via SSH for investigations. This is easily done using the Azure portal. Select the App Service, and scroll down
178178
the list of tools until reaching **SSH** under the **Development Tools** section.
179179
* To aid in troubleshooting, go to the **Diagnostics logs** settings for the App Service, and change the **Docker Container logging** setting

docs/modeling/vs-shell-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.workload:
1010
---
1111
# VS Shell deployment
1212

13-
An isolated shell lets you determine which Visual Studio functionality you need to interact with your domain-specific language and how that solution should appear. For more information about the Visual Studio isolated shell, see [Customizing the Isolated Shell](https://vspartner.com/pages/vsshells).
13+
An isolated shell lets you determine which Visual Studio functionality you need to interact with your domain-specific language and how that solution should appear. For more information about the Visual Studio isolated shell, see [Customizing the Isolated Shell](https://docs.microsoft.com/visualstudio/extensibility/customizing-the-isolated-shell).
1414

1515
To set a Visual Studio Shell as the deployment target:
1616

docs/sharepoint/deploying-publishing-and-upgrading-sharepoint-solution-packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ ms.workload:
4848
You can also add commands to run before and after deployment. For more information, see [How to: Set SharePoint deployment commands](../sharepoint/how-to-set-sharepoint-deployment-commands.md).
4949

5050
## Publish packages to a remote or local server
51-
To publish a sandboxed SharePoint solution to a remote server, on the menu bar, choose **Build**, **Publish**, and then, in the **Publish** dialog box, choose the **Publish to SharePoint Site** option button, providing the remote server's URL, such as **https://someremoteserver.sharepoint.microsoftonline.com**.
51+
To publish a sandboxed SharePoint solution to a remote server, on the menu bar, choose **Build**, **Publish**, and then, in the **Publish** dialog box, choose the **Publish to SharePoint Site** option button, providing the remote server's URL, such as `https://someremoteserver.sharepoint.microsoftonline.com`.
5252

5353
To publish a SharePoint solution to a local server, in the **Publish** dialog box, choose the **Publish to File System** option button, providing a local system path.
5454

docs/test/editing-coded-ui-tests-using-the-coded-ui-test-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Using the Coded UI Test Editor, you can quickly locate and view all the UI actio
6868

6969
To modify the properties for a UI action, in the **UI Action** pane, expand the test method that contains a UI action that you want to edit the properties for, select the UI action, and then modify the properties using the Properties window.
7070

71-
For example, if a server is unavailable, and you have a UI action associated with your web browser that states **Go to Web page '<http://Contoso1/default.aspx>'**, you could change the URL to `'http://Contoso2/default.aspx'`.
71+
For example, if a server is unavailable, and you have a UI action associated with your web browser that states **Go to Web page http:\//Contoso1/default.aspx**, you could change the URL to `http://Contoso2/default.aspx`.
7272

7373
![Control properties](../test/media/codeduitestcontrolprop.png)
7474

docs/vs-2015/debugger/debug-xaml-in-blend.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ You can use the tools in [!INCLUDE[blend_first](../includes/blend-first-md.md)]
108108
109109
4. Double-click "The member 'content' is not recognized or is not accessible." The `c` in `content` should be upper-case. Replace the lower-case "c" with an upper-case "c."
110110
111-
5. Double-click "The property 'Mame' does not exist in the '<https://schemas.microsoft.com/winfx/2006/xaml>' namespace." The "M" in "Mame" should be an "N." Replace the "M" with an "N." Now that the XAML can be parsed, the app appears on the design surface.
111+
5. Double-click "The property 'Mame' does not exist in the `https://schemas.microsoft.com/winfx/2006/xaml` namespace." The "M" in "Mame" should be an "N." Replace the "M" with an "N." Now that the XAML can be parsed, the app appears on the design surface.
112112
113113
![Debugging XAML in Blend for Visual Studio](../debugger/media/blend-debugartboard-xaml.png "blend_debugArtboard_XAML")
114114

docs/vs-2015/deployment/how-to-check-for-application-updates-programmatically-using-the-clickonce-deployment-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ ClickOnce provides two ways to update an application once it is deployed. In the
4343

4444
### Using Mage.exe to deploy an application that checks for updates programmatically
4545

46-
- Follow the instructions for deploying your application using Mage.exe as explained in [Walkthrough: Manually Deploying a ClickOnce Application](../deployment/walkthrough-manually-deploying-a-clickonce-application.md). When calling Mage.exe to generate the deployment manifest, make sure to use the command-line switch `providerUrl`, and to specify the URL where ClickOnce should check for updates. If your application will update from [http://www.adatum.com/MyApp](http://www.adatum.com/MyApp), for example, your call to generate the deployment manifest might look like this:
46+
- Follow the instructions for deploying your application using Mage.exe as explained in [Walkthrough: Manually Deploying a ClickOnce Application](../deployment/walkthrough-manually-deploying-a-clickonce-application.md). When calling Mage.exe to generate the deployment manifest, make sure to use the command-line switch `providerUrl`, and to specify the URL where ClickOnce should check for updates. If your application will update from `http://www.adatum.com/MyApp`, for example, your call to generate the deployment manifest might look like this:
4747

4848
```
4949
mage -New Deployment -ToFile WindowsFormsApp1.application -Name "My App 1.0" -Version 1.0.0.0 -AppManifest 1.0.0.0\MyApp.manifest -providerUrl http://www.adatum.com/MyApp/MyApp.application

docs/vs-2015/extensibility/getting-started-with-roslyn-analyzers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ With live, project-based code analyzers in Visual Studio, API authors can ship d
3030
## Other Resources
3131
[More docs on the GitHub OSS site](https://github.com/dotnet/roslyn/tree/master/docs/analyzers)
3232

33-
[FxCop rules implemented with Roslyn analyzers on GitHub](https://github.com/dotnet/roslyn/tree/master/src/Diagnostics/FxCop)
33+
[FxCop rules implemented with Roslyn analyzers on GitHub](https://github.com/dotnet/roslyn/tree/master/src/Features/Core/Portable/Diagnostics/Analyzers)

docs/vs-2015/extensibility/private-galleries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ You can share the controls, templates, and tools that you develop by posting the
3838

3939
5. In the **URL** field, enter the URL of the Atom feed or SharePoint site that is hosting the private gallery.
4040

41-
1. If the host is an Atom feed that connects to the private gallery, the URL would resemble this one: http://www.mywebsite/mygallery/atom.xml. This URL can refer to a file or a network path.
41+
1. If the host is an Atom feed that connects to the private gallery, the URL would resemble this one: `http://www.mywebsite/mygallery/atom.xml`. This URL can refer to a file or a network path.
4242

43-
2. If the host is a SharePoint site, the URL would resemble this one: http://mysharepoint/sites/mygallery/forms/AllItems.aspx.
43+
2. If the host is a SharePoint site, the URL would resemble this one: `http://mysharepoint/sites/mygallery/forms/AllItems.aspx`.
4444

4545
### Managing Private Galleries
4646
An administrator can make a private gallery available to several computers at the same time by modifying the system registry on each computer. To accomplish this, create a .pkgdef file that describes the new registry keys and their values. The format of this file is as follows.

docs/vs-2015/extensibility/roslyn-analyzers-and-code-aware-library-for-immutablearrays.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,4 +308,4 @@ You can see all the finished code [here](https://github.com/DustinCampbell/CoreF
308308
[Completed code on GitHub](https://github.com/DustinCampbell/CoreFxAnalyzers/tree/master/Source/CoreFxAnalyzers)
309309
[Several examples on GitHub, grouped into three kinds of analyzers](https://github.com/dotnet/roslyn/blob/master/docs/analyzers/Analyzer%20Samples.md)
310310
[Other docs on the GitHub OSS site](https://github.com/dotnet/roslyn/tree/master/docs/analyzers)
311-
[FxCop rules implemented with Roslyn analyzers on GitHub](https://github.com/dotnet/roslyn/tree/master/src/Diagnostics/FxCop)
311+
[FxCop rules implemented with Roslyn analyzers on GitHub](https://github.com/dotnet/roslyn/tree/master/src/Features/Core/Portable/Diagnostics/Analyzers)

docs/vs-2015/install/create-an-offline-installation-of-visual-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ This page describes how to install Visual Studio 2015 when you are not connected
5656
| Component or Package | Solution |
5757
|-|-|
5858
| Dotfuscator and Analytics Community Edition 5.19.1 (for the Community, Professional, and Enterprise editions of Visual Studio, as installed on **Windows 7 SP1** and **Windows Server 2008 R2**) | If your offline machine is running **Windows 7 SP1** or **Windows Server 2008 R2**, you must perform the following steps before you install Visual Studio 2015:<br /><br /> 1. Configure a file or web server to download the CTL files.<br /><br /> 2. Redirect the Microsoft Automatic Update URL for a disconnected environment.<br /><br /> For more information, see the [Configure Trusted Roots and Disallowed Certificates](https://technet.microsoft.com/library/dn265983.aspx) page on the Microsoft TechNet site. |
59-
| Android SDK Setup (API Level) | You must have an internet connection to install Android SDK (API Level) packages. If you are on a restricted network, you must allow access to the following URLs when you install Visual Studio:<br /><br /> - https://dl.google.com:443<br />- https://dl-ssl.google.com:443<br />- https://dl-ssl.google.com/android/repository/*<br /> <br />For more information about how to resolve possible issues with proxy settings, see the [Visual Studio 2015 install failures (Android SDK Setup) behind a Proxy](https://blogs.msdn.microsoft.com/peterhauge/2016/09/22/visual-studio-2015-install-failures-android-sdk-setup-behind-a-proxy/) blog post. |
59+
| Android SDK Setup (API Level) | You must have an internet connection to install Android SDK (API Level) packages. If you are on a restricted network, you must allow access to the following URLs when you install Visual Studio:<br /><br /> - `https://dl.google.com:443`<br />- `https://dl-ssl.google.com:443`<br />- `https://dl-ssl.google.com/android/repository/*`<br /> <br />For more information about how to resolve possible issues with proxy settings, see the [Visual Studio 2015 install failures (Android SDK Setup) behind a Proxy](https://blogs.msdn.microsoft.com/peterhauge/2016/09/22/visual-studio-2015-install-failures-android-sdk-setup-behind-a-proxy/) blog post. |
6060
| Visual Studio Extensibility Item Templates<br /><br /> GitHub Extension for Visual Studio<br /><br /> PowerShell Tools for Visual Studio | If you do not have an internet connection when you install Visual Studio 2015, you can use a special offline feed to generate the offline installation layout. **Note:** This special feed includes the most recent Updates to Visual Studio 2015. <br /><br /> To create the special offline feed, run the following command: /layout *Drive:*\VisualStudio2015 /overridefeeduri *URL-to-feed-xml*<br /><br /> For example, for an English-language special offline feed of Visual Studio 2015 Enterprise, run:<br /><br /> `vs_enterprise_ENU.exe /layout D:\VisualStudio2015 /overridefeeduri "https://go.microsoft.com/fwlink/?LinkID=785882&clcid0x409"`<br /><br /> For a complete list of URLs that you can use to create a special offline feed in the language of your choice, see the table below. |
6161

6262
Use the following URLs to create a language-specific special offline feed, as described in the table above.

docs/vs-2015/msbuild/additional-msbuild-resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ manager: jillfra
606606
If you are trying to solve a problem and cannot find the information you need in the documentation, you can consult other resources such as Knowledge Base articles, the developer community, or product support.
607607

608608
## Knowledge Base Articles
609-
You can search the Knowledge Base (KB) online for articles about product issues. Not all issues have a corresponding KB article, but errors encountered by a significant number of customers are typically documented. You can access KB articles on the [Knowledge Base (MSBuild search results)](https://search.microsoft.com/supportresults.aspx?q=knowledge+base+MSBuild&x=0&y=0) Web site.
609+
You can search the Knowledge Base (KB) online for articles about product issues. Not all issues have a corresponding KB article, but errors encountered by a significant number of customers are typically documented. You can access KB articles on the [Knowledge Base](https://support.microsoft.com/help/242450/how-to-query-the-microsoft-knowledge-base-by-using-keywords-and-query) Web site.
610610

611611
## Community Forums
612612
Forums let you interact with other developers, and also Microsoft employees. If you encounter an error that you cannot find a resolution for, you can post questions about the issue on a forum. You can also search the newsgroups to see whether others have posted about the same issue. You can access the Visual Studio MSBuild forum on the [MSDN Forums](https://social.msdn.microsoft.com/forums/en-US/msbuild/threads/) Web site.

0 commit comments

Comments
 (0)