Skip to content

Commit d922134

Browse files
committed
merge from master
2 parents 9f7ec55 + 8db5e53 commit d922134

File tree

145 files changed

+1883
-1632
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+1883
-1632
lines changed

.openpublishing.publish.config.json

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,6 @@
11
{
22
"build_entry_point": "docs",
33
"docsets_to_publish": [
4-
{
5-
"docset_name": "connected-environment",
6-
"build_source_folder": "connected-environment",
7-
"build_output_subfolder": "connected-environment",
8-
"locale": "en-us",
9-
"monikers": [],
10-
"moniker_ranges": [],
11-
"open_to_public_contributors": false,
12-
"type_mapping": {
13-
"Conceptual": "Content",
14-
"ManagedReference": "Content",
15-
"RestApi": "Content"
16-
},
17-
"build_entry_point": "docs",
18-
"template_folder": "_themes"
19-
},
204
{
215
"docset_name": "docs",
226
"build_source_folder": "docs",

.openpublishing.redirection.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -682,17 +682,22 @@
682682
},
683683
{
684684
"source_path": "docs/debugger/first-look-at-the-debugger.md",
685-
"redirect_url": "/visualstudio/debugger/getting-started-with-the-debugger",
685+
"redirect_url": "/visualstudio/debugger/debugger-feature-tour.md",
686686
"redirect_document_id": false
687687
},
688688
{
689689
"source_path": "docs/debugger/debugger-basics.md",
690-
"redirect_url": "/visualstudio/debugger/getting-started-with-the-debugger",
690+
"redirect_url": "/visualstudio/debugger/debugger-feature-tour.md",
691691
"redirect_document_id": false
692692
},
693693
{
694694
"source_path": "docs/debugger/getting-started-with-the-debugger-vb.md",
695-
"redirect_url": "/visualstudio/get-started/visual-basic/getting-started-with-the-debugger-vb",
695+
"redirect_url": "/visualstudio/get-started/visual-basic/tutorial-debugger",
696+
"redirect_document_id": false
697+
},
698+
{
699+
"source_path": "docs/debugger/getting-started-with-the-debugger.md",
700+
"redirect_url": "/visualstudio/debugger/debugger-feature-tour.md",
696701
"redirect_document_id": false
697702
},
698703
{
@@ -7071,6 +7076,11 @@
70717076
"source_path": "docs/reference/synchronized-settings-environment-options-dialog-box.md",
70727077
"redirect_url": "/visualstudio/ide/reference/accounts-environment-options-dialog-box",
70737078
"redirect_document_id": false
7079+
},
7080+
{
7081+
"source_path": "docs/extensibility/buildprojectonload-visual-studio-templates.md",
7082+
"redirect_url": "/visualstudio/extensibility/buildonload-visual-studio-templates",
7083+
"redirect_document_id": false
70747084
}
70757085
]
70767086
}

connected-environment/breadcrumb/toc.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

connected-environment/docfx.json

Lines changed: 0 additions & 51 deletions
This file was deleted.

docs/ai/media/Tensorflow_logo.png

-4.28 KB
Binary file not shown.

docs/ai/media/about/App_IDE.png

-198 KB
Binary file not shown.

docs/ai/media/about/TensorBoard.png

-189 KB
Binary file not shown.
-352 KB
Binary file not shown.
-168 KB
Binary file not shown.

docs/debugger/attach-to-running-processes-with-the-visual-studio-debugger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You can attach the Visual Studio debugger to a running process on a local or rem
3535

3636
You can use **Attach to Process** to debug running apps on local or remote computers, debug multiple processes simultaneously, debug apps that weren't created in Visual Studio, or debug any app you didn't start from Visual Studio with the debugger attached. For example, if you're running an app without the debugger and hit an exception, you can then attach the debugger to the process running the app and begin debugging.
3737

38-
For information about basic debugging in Visual Studio, see [Getting started with the debugger](../debugger/getting-started-with-the-debugger.md).
38+
For information about basic debugging in Visual Studio, see [First look at the debugger](../debugger/debugger-feature-tour.md).
3939

4040
> [!TIP]
4141
> Not sure whether to use **Attach to Process** for your debugging scenario? See [Common debugging scenarios](#BKMK_Scenarios).
@@ -156,7 +156,7 @@ To quickly select a running process to attach to, in Visual Studio, type **Ctrl*
156156
|Remote debug ASP.NET 4 or 4.5 on an IIS server|Use remote tools and **Attach to Process**|*w3wp.exe*|See [Remote debugging ASP.NET on a remote IIS computer](../debugger/remote-debugging-aspnet-on-a-remote-iis-7-5-computer.md)|
157157
|Remote debug ASP.NET Core on an IIS server|Use remote tools and **Attach to Process**|*dotnet.exe*|For app deployment, see [Publish to IIS](https://docs.asp.net/en/latest/publishing/iis.html). For debugging, see [Remote debugging ASP.NET Core on a remote IIS computer](../debugger/remote-debugging-aspnet-on-a-remote-iis-computer.md)|
158158
|Debug client-side script on a local IIS server, for supported app types |Use **Attach to Process**|*chrome.exe*, *MicrosoftEdgeCP.exe*, or *iexplore.exe*|Script debugging must be enabled. For Chrome, you must also run Chrome in debug mode and select **Webkit code** in the **Attach to** field.|
159-
|Debug a C#, Visual Basic, or C++ app on the local machine|Use either [standard debugging](../debugger/getting-started-with-the-debugger.md) or **Attach to Process**|*\<appname>.exe*|In most scenarios, use standard debugging and not **Attach to Process**.|
159+
|Debug a C#, Visual Basic, or C++ app on the local machine|Use either [standard debugging](../debugger/debugger-feature-tour.md) or **Attach to Process**|*\<appname>.exe*|In most scenarios, use standard debugging and not **Attach to Process**.|
160160
|Remote debug a Windows desktop app|Remote tools|N/A| See [Remote debug a C# or Visual Basic app](../debugger/remote-debugging-csharp.md) or [Remote debug a C++ app](../debugger/remote-debugging-cpp.md)|
161161
|Debug an ASP.NET app on the local machine after you start the app without the debugger|Use **Attach to Process**|*iiexpress.exe*|This may be helpful to make your app load faster, such as (for example) when profiling. |
162162
|Debug other supported app types on a server process|If server is remote, use remote tools, and **Attach to Process**|*chrome.exe*, *iexplore.exe*, or other processes|If necessary, use Resource Monitor to help identify the process. See [Remote debugging](../debugger/remote-debugging.md).|

docs/debugger/debug-using-the-just-in-time-debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,6 @@ You might see the following error messages during Just-In-Time debugging:
190190

191191
## See also
192192
- [Debugger security](../debugger/debugger-security.md)
193-
- [Debugger basics](../debugger/getting-started-with-the-debugger.md)
193+
- [First look at the debugger](../debugger/debugger-feature-tour.md)
194194
- [Options, Debugging, Just-In-Time dialog box](../debugger/just-in-time-debugging-options-dialog-box.md)
195195
- [Security Warning: Attaching to a process owned by an untrusted user can be dangerous. If the following information looks suspicious or you are unsure, do not attach to this process](../debugger/security-warning-attaching-to-a-process-owned-by-an-untrusted-user.md)

docs/debugger/debugger-feature-tour.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ For more information, see the [Inspect previous app states using IntelliTrace](.
209209

210210
## Next steps
211211

212-
In this tutorial, you've had a quick look at many debugger features. You may want a more in-depth look at these features using a sample application
212+
In this tutorial, you've had a quick look at many debugger features. You may want a more in-depth look at one of these features, such as breakpoints.
213213

214214
> [!div class="nextstepaction"]
215-
> [Learn to debug using Visual Studio](../debugger/getting-started-with-the-debugger.md)
215+
> [Learn to use breakpoints](../debugger/using-breakpoints.md)

docs/debugger/debugger-security.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@ The ability to debug another process gives you extremely broad powers that you w
7575

7676
## See Also
7777
[Debugger Settings and Preparation](../debugger/debugger-settings-and-preparation.md)
78-
[Debugger Basics](../debugger/getting-started-with-the-debugger.md)
78+
[First look at the debugger](../debugger/debugger-feature-tour.md)
7979
[Security Warning: Attaching to a process owned by an untrusted user can be dangerous. If the following information looks suspicious or you are unsure, do not attach to this process](../debugger/security-warning-attaching-to-a-process-owned-by-an-untrusted-user.md)
8080
[Security Warning: Debugger Must Execute Untrusted Command](../debugger/security-warning-debugger-must-execute-untrusted-command.md)

docs/debugger/debugger-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ You can open most debugger windows while you are debugging your program. To see
4545

4646
## See Also
4747

48-
[Debugger Basics](../debugger/getting-started-with-the-debugger.md)
48+
[First look at the debugger](../debugger/debugger-feature-tour.md)

docs/debugger/debugging-absolute-beginners.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,4 +326,4 @@ When you find the region of code with the problem, use the debugger to investiga
326326
In this article, you've learned a few general debugging concepts. Next, you can start learning more about the debugger.
327327

328328
> [!div class="nextstepaction"]
329-
> [Learn to debug using Visual Studio](../debugger/getting-started-with-the-debugger.md)
329+
> [First look at the debugger](../debugger/debugger-feature-tour.md)

docs/debugger/debugging-basics-registers-window.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ The **Registers** window is available only if address-level debugging is enabled
4747

4848
## See Also
4949
[How to: Use the Registers Window](../debugger/how-to-use-the-registers-window.md)
50-
[Debugger Basics](../debugger/getting-started-with-the-debugger.md)
50+
[First look at the debugger](../debugger/debugger-feature-tour.md)

docs/debugger/debugging-dll-projects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ You can't run a DLL directly. It must be called by an app, usually an *.exe* fil
9696

9797
To debug a DLL, you can [start debugging from the calling app](#vxtskdebuggingdllprojectsthecallingapplication), or [debug from the DLL project](how-to-debug-from-a-dll-project.md) by specifying its calling app. You can also use the debugger [Immediate window](#vxtskdebuggingdllprojectstheimmediatewindow) to evaluate DLL functions or methods at design time, without using a calling app.
9898

99-
For more information, see [Get started with the debugger](getting-started-with-the-debugger.md).
99+
For more information, see [First look at the debugger](../debugger/debugger-feature-tour.md).
100100

101101
### <a name="vxtskdebuggingdllprojectsthecallingapplication"></a> Start debugging from the calling app
102102

docs/debugger/debugging-managed-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ms.workload:
2121
---
2222
# Debugging Managed Code
2323

24-
This section covers common debugging problems and techniques for managed applications, or applications written in languages that target the common language runtime, such as Visual Basic, C#, and C++. The techniques described here are high-level techniques. For more information, see [Using the Debugger](../debugger/getting-started-with-the-debugger.md).
24+
This section covers common debugging problems and techniques for managed applications, or applications written in languages that target the common language runtime, such as Visual Basic, C#, and C++. The techniques described here are high-level techniques. [First look at the debugger](../debugger/debugger-feature-tour.md).
2525

2626
## In This Section
2727

docs/debugger/debugging-native-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ ms.workload:
2424
- "cplusplus"
2525
---
2626
# Debugging Native Code
27-
The section covers some common debugging problems and techniques for native applications. The techniques covered in this section are high-level techniques. For the mechanics of using the Visual Studio debugger, see [Debugger Roadmap](../debugger/getting-started-with-the-debugger.md).
27+
The section covers some common debugging problems and techniques for native applications. The techniques covered in this section are high-level techniques. For the mechanics of using the Visual Studio debugger, see [First look at the debugger](../debugger/debugger-feature-tour.md)).
2828

2929
## In This Section
3030
[How to: Debug Optimized Code](../debugger/how-to-debug-optimized-code.md)

docs/debugger/debugging-preparation-visual-cpp-project-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ This section describes how to debug the basic project types created by the [!INC
6767

6868
2. On the **Debug** menu, choose **Start**.
6969

70-
3. Debug using the techniques discussed in [Debugger Basics](../debugger/getting-started-with-the-debugger.md).
70+
3. Debug using the techniques discussed in [First look at the debugger](../debugger/debugger-feature-tour.md).
7171

7272
### <a name="BKMK_To_manually_set_a_Debug_configuration"></a> To manually set a Debug configuration
7373

@@ -105,7 +105,7 @@ This section describes how to debug the basic project types created by the [!INC
105105
[In this topic](../debugger/debugging-preparation-visual-cpp-project-types.md#BKMK_In_this_topic)
106106

107107
## See Also
108-
[Debugger Basics](../debugger/getting-started-with-the-debugger.md)
108+
[First look at the debugger](../debugger/debugger-feature-tour.md)
109109
[Project Settings for a C++ Debug Configuration](../debugger/project-settings-for-a-cpp-debug-configuration.md)
110110
[Attaching to a Running Program or Multiple Programs](../debugger/attach-to-running-processes-with-the-visual-studio-debugger.md)
111111
[Debug and Release Configurations](../debugger/how-to-set-debug-and-release-configurations.md)

docs/debugger/debugging-preparation-windows-forms-applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ The Windows Forms project template creates a Windows Forms application. Debuggin
5757

5858
3. On the **Debug** menu, click **Start**.
5959

60-
4. Debug using the techniques discussed in [Debugger Basics](../debugger/getting-started-with-the-debugger.md).
60+
4. Debug using the techniques discussed in [First look at the debugger](../debugger/debugger-feature-tour.md).
6161

6262
## See Also
6363
[Debugging Managed Code](../debugger/debugging-managed-code.md)

docs/debugger/debugging-web-applications.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ This section explains how to debug several types of Web applications.
3535
## See Also
3636
[Debugging Web Applications and Script](../debugger/debugging-web-applications-and-script.md)
3737
[Debugger Settings and Preparation](../debugger/debugger-settings-and-preparation.md)
38-
[Debugger Basics](../debugger/getting-started-with-the-debugger.md)
38+
[First look at the debugger](../debugger/debugger-feature-tour.md)
3939
[Debugging in Visual Studio](../debugger/index.md)
4040
[Debugger Feature Tour](../debugger/debugger-feature-tour.md)

docs/debugger/edit-and-continue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ Edit and Continue is a time-saving feature that enables you to make changes to y
4343
## See Also
4444
[Debugger Security](../debugger/debugger-security.md)
4545
[Edit and Continue, Debugging, Options Dialog Box](https://msdn.microsoft.com/library/bcew296c.aspx)
46-
[Debugger Basics](../debugger/getting-started-with-the-debugger.md)
46+
[First look at the debugger](../debugger/debugger-feature-tour.md)

0 commit comments

Comments
 (0)