Skip to content

Commit 72f3685

Browse files
authored
Merge pull request #3146 from MicrosoftDocs/master636918112529414491
For protected CLA branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents 2a4ad69 + ec4e209 commit 72f3685

File tree

103 files changed

+1081
-784
lines changed

Some content is hidden

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

103 files changed

+1081
-784
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1695,6 +1695,11 @@
16951695
"redirect_url": "/visualstudio/ide/reference/generate-xml-documentation-comments",
16961696
"redirect_document_id": false
16971697
},
1698+
{
1699+
"source_path": "docs/ide/talk-to-us.md",
1700+
"redirect_url": "/visualstudio/ide/feedback-options",
1701+
"redirect_document_id": false
1702+
},
16981703
{
16991704
"source_path": "docs/ide/targeting-a-specific-dotnet-framework-version.md",
17001705
"redirect_url": "/visualstudio/ide/visual-studio-multi-targeting-overview",

docs/extensibility/debugger/reference/ad-process-id-type.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ ms.author: "gregvanl"
1212
manager: jillfra
1313
ms.workload:
1414
- "vssdk"
15+
dev_langs:
16+
- CPP
17+
- CSharp
1518
---
1619
# AD_PROCESS_ID_TYPE
1720
Specifies how to interpret a process ID in the [AD_PROCESS_ID](../../../extensibility/debugger/reference/ad-process-id.md) structure.
@@ -33,11 +36,11 @@ public enum enum_AD_PROCESS_ID {
3336
};
3437
```
3538

36-
## Members
37-
AD_PROCESS_ID_SYSTEM
39+
## Fields
40+
`AD_PROCESS_ID_SYSTEM`\
3841
Process ID is a system identifier. Use the `ProcessId.dwProcessId` field of the [AD_PROCESS_ID](../../../extensibility/debugger/reference/ad-process-id.md) structure.
3942

40-
AD_PROCESS_ID_GUID
43+
`AD_PROCESS_ID_GUID`\
4144
Process ID is a GUID. Use the `ProcessId.guidProcessId` field of the `AD_PROCESS_ID` structure.
4245

4346
## Remarks
@@ -50,6 +53,6 @@ Namespace: Microsoft.VisualStudio.Debugger.Interop
5053

5154
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
5255

53-
## See Also
56+
## See also
5457
- [Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
5558
- [AD_PROCESS_ID](../../../extensibility/debugger/reference/ad-process-id.md)

docs/extensibility/debugger/reference/ad-process-id.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ ms.author: "gregvanl"
1212
manager: jillfra
1313
ms.workload:
1414
- "vssdk"
15+
dev_langs:
16+
- CPP
17+
- CSharp
1518
---
1619
# AD_PROCESS_ID
1720
Specifies the process ID, which may be either a system ID or a GUID.
@@ -39,13 +42,13 @@ public struct AD_PROCESS_ID {
3942
```
4043

4144
## Members
42-
`ProcessIdType`
45+
`ProcessIdType`\
4346
A value from the [AD_PROCESS_ID_TYPE](../../../extensibility/debugger/reference/ad-process-id-type.md) enumeration specifying how to interpret the `ProcessId` union (or, for managed code, which member of the structure to access).
4447

45-
dwProcessId
48+
`dwProcessId`\
4649
The process ID as a value from the system.
4750

48-
guidProcessId
51+
`guidProcessId`\
4952
The process ID as a GUID.
5053

5154
dwUnused
@@ -75,7 +78,7 @@ Namespace: Microsoft.VisualStudio.Debugger.Interop
7578

7679
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
7780

78-
## See Also
81+
## See also
7982
- [Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
8083
- [GetProcess](../../../extensibility/debugger/reference/idebugport2-getprocess.md)
8184
- [PROCESS_INFO](../../../extensibility/debugger/reference/process-info.md)

docs/extensibility/debugger/reference/address-kind.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ ms.author: "gregvanl"
1212
manager: jillfra
1313
ms.workload:
1414
- "vssdk"
15+
dev_langs:
16+
- CPP
17+
- CSharp
1518
---
1619
# ADDRESS_KIND
1720
Specifies the kinds of addresses.
@@ -85,7 +88,7 @@ Namespace: Microsoft.VisualStudio.Debugger.Interop
8588

8689
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
8790

88-
## See Also
91+
## See also
8992
- [Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
9093
- [GetAddress](../../../extensibility/debugger/reference/idebugaddress-getaddress.md)
9194
- [DEBUG_ADDRESS](../../../extensibility/debugger/reference/debug-address.md)

docs/extensibility/debugger/reference/api-reference-visual-studio-debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The reference section includes a conceptual overview of the API, a guide that sh
3636
> [!NOTE]
3737
> Invalid or `NULL` [out] parameters may cause the IDE to crash.
3838
39-
## See Also
39+
## See also
4040
- [Interfaces](../../../extensibility/debugger/reference/interfaces-visual-studio-debugging.md)
4141
- [Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
4242
- [Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)

docs/extensibility/debugger/reference/assemblylocresolution.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ ms.author: "gregvanl"
1212
manager: jillfra
1313
ms.workload:
1414
- "vssdk"
15+
dev_langs:
16+
- CPP
17+
- CSharp
1518
---
1619
# ASSEMBLYLOCRESOLUTION
1720
Specifies where an assembly is located.
@@ -37,17 +40,17 @@ public enum enum_ASSEMBLYLOCRESOLUTION {
3740
};
3841
```
3942

40-
## Members
41-
ALR_NAME
43+
## Fields
44+
`ALR_NAME`\
4245
Assembly is located in the current namespace.
4346

44-
ALR_USERDIR
47+
`ALR_USERDIR`\
4548
Assembly is located in a user directory.
4649

47-
ALR_SHAREDDIR
50+
`ALR_SHAREDDIR`\
4851
Assembly is located in shared directory.
4952

50-
ALR_REMOTEDIR
53+
`ALR_REMOTEDIR`\
5154
Assembly is located in a remote directory.
5255

5356
## Remarks
@@ -62,7 +65,7 @@ Namespace: Microsoft.VisualStudio.Debugger.Interop
6265

6366
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
6467

65-
## See Also
68+
## See also
6669
- [Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
6770
- [ResolveAssemblyRef](../../../extensibility/debugger/reference/ipropertyproxyeeside-resolveassemblyref.md)
6871
- [GetManagedViewerCreationData](../../../extensibility/debugger/reference/ipropertyproxyeeside-getmanagedviewercreationdata.md)

docs/extensibility/debugger/reference/attach-reason.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ ms.author: "gregvanl"
1212
manager: jillfra
1313
ms.workload:
1414
- "vssdk"
15+
dev_langs:
16+
- CPP
17+
- CSharp
1518
---
1619
# ATTACH_REASON
1720
Specifies the reason for the debug engine (DE) to attach to a program node.
@@ -35,14 +38,14 @@ public enum enum_ATTACH_REASON {
3538
};
3639
```
3740

38-
## Members
39-
ATTACH_REASON_AUTO
41+
## Fields
42+
`ATTACH_REASON_AUTO`\
4043
Attach because the process is currently in debug mode.
4144

42-
ATTACH_REASON_LAUNCH
45+
`ATTACH_REASON_LAUNCH`\
4346
Attach because the process has been launched.
4447

45-
ATTACH_REASON_USER
48+
`ATTACH_REASON_USER`\
4649
Attach because of a user request.
4750

4851
## Remarks
@@ -55,7 +58,7 @@ Namespace: Microsoft.VisualStudio.Debugger.Interop
5558

5659
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
5760

58-
## See Also
61+
## See also
5962
- [Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
6063
- [Attach](../../../extensibility/debugger/reference/idebugengine2-attach.md)
6164
- [Attach](../../../extensibility/debugger/reference/idebugprogramex2-attach.md)

docs/extensibility/debugger/reference/bp-cond-style.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ ms.author: "gregvanl"
1212
manager: jillfra
1313
ms.workload:
1414
- "vssdk"
15+
dev_langs:
16+
- CPP
17+
- CSharp
1518
---
1619
# BP_COND_STYLE
1720
Specifies the breakpoint condition style for pending and bound breakpoints.
@@ -35,14 +38,14 @@ public enum enum_BP_COND_STYLE {
3538
};
3639
```
3740

38-
## Members
39-
BP_COND_NONE
41+
## Fields
42+
`BP_COND_NONE`\
4043
Fires the breakpoint when the breakpoint's position is reached. No breakpoint condition specified.
4144

42-
BP_COND_WHEN_TRUE
45+
`BP_COND_WHEN_TRUE`\
4346
Fires the breakpoint only when the conditional expression associated with the breakpoint evaluates to `true`.
4447

45-
BP_COND_WHEN_CHANGED
48+
`BP_COND_WHEN_CHANGED`\
4649
Fires the breakpoint only when the value of the conditional expression associated with the breakpoint has changed from its previous evaluation.
4750

4851
## Remarks
@@ -55,6 +58,6 @@ Namespace: Microsoft.VisualStudio.Debugger.Interop
5558

5659
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
5760

58-
## See Also
61+
## See also
5962
- [Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
6063
- [BP_CONDITION](../../../extensibility/debugger/reference/bp-condition.md)

docs/extensibility/debugger/reference/bp-condition.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ ms.author: "gregvanl"
1212
manager: jillfra
1313
ms.workload:
1414
- "vssdk"
15+
dev_langs:
16+
- CPP
17+
- CSharp
1518
---
1619
# BP_CONDITION
1720
Describes the conditions under which a breakpoint fires.
@@ -39,19 +42,19 @@ public struct BP_CONDITION {
3942
```
4043

4144
## Members
42-
`pThread`
45+
`pThread`\
4346
The [IDebugThread2](../../../extensibility/debugger/reference/idebugthread2.md) object that represents the active thread for the application that contains the breakpoint.
4447

45-
`styleCondition`
48+
`styleCondition`\
4649
A value from the [BP_COND_STYLE](../../../extensibility/debugger/reference/bp-cond-style.md) enumeration describing the style of this breakpoint condition.
4750

48-
`bstrContext`
51+
`bstrContext`\
4952
The location of the breakpoint.
5053

51-
`bstrCondition`
54+
`bstrCondition`\
5255
The firing condition of the breakpoint.
5356

54-
`nRadix`
57+
`nRadix`\
5558
Radix to be used in evaluating any numerical information.
5659

5760
## Remarks
@@ -66,7 +69,7 @@ Namespace: Microsoft.VisualStudio.Debugger.Interop
6669

6770
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
6871

69-
## See Also
72+
## See also
7073
- [Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
7174
- [BP_REQUEST_INFO](../../../extensibility/debugger/reference/bp-request-info.md)
7275
- [BP_REQUEST_INFO2](../../../extensibility/debugger/reference/bp-request-info2.md)

docs/extensibility/debugger/reference/bp-error-resolution-info.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ ms.author: "gregvanl"
1212
manager: jillfra
1313
ms.workload:
1414
- "vssdk"
15+
dev_langs:
16+
- CPP
17+
- CSharp
1518
---
1619
# BP_ERROR_RESOLUTION_INFO
1720
Describes the resolution of an error breakpoint, including location, program, and thread.
@@ -41,22 +44,22 @@ public struct BP_ERROR_RESOLUTION_INFO {
4144
```
4245

4346
## Members
44-
`dwFields`
47+
`dwFields`\
4548
A combination of values from the [BPERESI_FIELDS](../../../extensibility/debugger/reference/bperesi-fields.md) enumeration specifying which fields of this structure are filled out.
4649

47-
`bpResLocation`
50+
`bpResLocation`\
4851
The [BP_RESOLUTION_LOCATION](../../../extensibility/debugger/reference/bp-resolution-location.md) union, which specifies the breakpoint resolution location.
4952

50-
`pProgram`
53+
`pProgram`\
5154
The [IDebugProgram2](../../../extensibility/debugger/reference/idebugprogram2.md) object that represents the application in which the breakpoint error occurred.
5255

53-
`pThread`
56+
`pThread`\
5457
The [IDebugThread2](../../../extensibility/debugger/reference/idebugthread2.md) object that represents the thread on which the application that generated the breakpoint error is running.
5558

56-
`bstrMessage`
59+
`bstrMessage`\
5760
A string containing any warning or error message resulting from this error resolution.
5861

59-
`dwType`
62+
`dwType`\
6063
A value from the [BP_ERROR_TYPE](../../../extensibility/debugger/reference/bp-error-type.md) enumeration that specifies the breakpoint error type.
6164

6265
## Remarks
@@ -69,7 +72,7 @@ Namespace: Microsoft.VisualStudio.Debugger.Interop
6972

7073
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
7174

72-
## See Also
75+
## See also
7376
- [Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
7477
- [GetResolutionInfo](../../../extensibility/debugger/reference/idebugerrorbreakpointresolution2-getresolutioninfo.md)
7578
- [BPRESI_FIELDS](../../../extensibility/debugger/reference/bpresi-fields.md)

docs/extensibility/debugger/reference/bp-error-type.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ ms.author: "gregvanl"
1212
manager: jillfra
1313
ms.workload:
1414
- "vssdk"
15+
dev_langs:
16+
- CPP
17+
- CSharp
1518
---
1619
# BP_ERROR_TYPE
1720
Specifies the error type of a breakpoint.
@@ -51,38 +54,38 @@ public enum enum_BP_ERROR_TYPE {
5154
};
5255
```
5356

54-
## Members
55-
BPET_NONE
57+
## Fields
58+
`BPET_NONE`\
5659
Specifies no breakpoint error.
5760

58-
BPET_TYPE_WARNING
61+
`BPET_TYPE_WARNING`\
5962
Specifies a warning-style breakpoint error.
6063

61-
BPET_TYPE_ERROR
64+
`BPET_TYPE_ERROR`\
6265
Specifies an error-style breakpoint error.
6366

64-
BPET_SEV_HIGH
67+
`BPET_SEV_HIGH`\
6568
Specifies a high-severity breakpoint error.
6669

67-
BPET_SEV_GENERAL
70+
`BPET_SEV_GENERAL`\
6871
Specifies a medium-severity breakpoint error.
6972

70-
BPET_SEV_LOW
73+
`BPET_SEV_LOW`\
7174
Specifies a low-severity breakpoint error.
7275

73-
BPET_TYPE_MASK
76+
`BPET_TYPE_MASK`\
7477
Specifies a mask-style breakpoint error.
7578

76-
BPET_SEV_MASK
79+
`BPET_SEV_MASK`\
7780
Specifies a severity-mask-style breakpoint error.
7881

79-
BPET_GENERAL_WARNING
82+
`BPET_GENERAL_WARNING`\
8083
Specifies a general-warning-style breakpoint error.
8184

82-
BPET_GENERAL_ERROR
85+
`BPET_GENERAL_ERROR`\
8386
Specifies a general-error-style breakpoint error.
8487

85-
BPET_ALL
88+
`BPET_ALL`\
8689
Specifies all breakpoint error types.
8790

8891
## Remarks
@@ -97,7 +100,7 @@ Namespace: Microsoft.VisualStudio.Debugger.Interop
97100

98101
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
99102

100-
## See Also
103+
## See also
101104
- [Enumerations](../../../extensibility/debugger/reference/enumerations-visual-studio-debugging.md)
102105
- [BP_ERROR_RESOLUTION_INFO](../../../extensibility/debugger/reference/bp-error-resolution-info.md)
103106
- [EnumErrorBreakpoints](../../../extensibility/debugger/reference/idebugpendingbreakpoint2-enumerrorbreakpoints.md)

0 commit comments

Comments
 (0)