Skip to content

Commit 41b3ce1

Browse files
committed
Merged main into live
2 parents 5bd8274 + 4d6f3ac commit 41b3ce1

File tree

43 files changed

+75
-74
lines changed

Some content is hidden

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

43 files changed

+75
-74
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Welcome! This repo contains source files for the Visual Studio technical documen
44

55
This repo was moved on June 23, 2017 from https://github.com/Microsoft/vsdocs.
66

7-
The documentation for Visual Basic and Visual C# is located in the [dotnet docs repo](https://github.com/dotnet/docs/tree/master/docs), and the Visual C++ documentation is located in the [C++ docs repo](https://github.com/MicrosoftDocs/cpp-docs).
7+
The documentation for Visual Basic and Visual C# is located in the [dotnet docs repo](https://github.com/dotnet/docs/tree/main/docs), and the Visual C++ documentation is located in the [C++ docs repo](https://github.com/MicrosoftDocs/cpp-docs).
88

99
## Submit feedback
1010

docs/code-quality/automatic-feature-suspension.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ In a low memory condition, the following actions take place:
3333

3434
## Improve Visual Studio performance
3535

36-
For tips and tricks on how to improve Visual Studio performance when dealing with large solutions or low-memory conditions, see [Performance considerations for large solutions](https://github.com/dotnet/roslyn/blob/master/docs/wiki/Performance-considerations-for-large-solutions.md).
36+
For tips and tricks on how to improve Visual Studio performance when dealing with large solutions or low-memory conditions, see [Performance considerations for large solutions](https://github.com/dotnet/roslyn/blob/main/docs/wiki/Performance-considerations-for-large-solutions.md).
3737

3838
::: moniker range="<=vs-2019"
3939

@@ -66,4 +66,4 @@ In addition, caches used for internal Visual Studio operations are also cleared.
6666

6767
- [How to: Configure live code analysis scope for managed code](./configure-live-code-analysis-scope-managed-code.md)
6868
- [Fundamentals of Garbage Collection](/dotnet/standard/garbage-collection/fundamentals)
69-
- [Performance considerations for large solutions](https://github.com/dotnet/roslyn/blob/master/docs/wiki/Performance-considerations-for-large-solutions.md)
69+
- [Performance considerations for large solutions](https://github.com/dotnet/roslyn/blob/main/docs/wiki/Performance-considerations-for-large-solutions.md)

docs/data-tools/create-a-simple-data-application-with-wpf-and-entity-framework-6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This walkthrough shows how to create a basic "forms over data" application in Vi
2222

2323
This article focuses on using data tools in Visual Studio, and does not attempt to explain the underlying technologies in any depth. It assumes that you have a basic familiarity with XAML, Entity Framework, and SQL. This example also does not demonstrate Model-View-ViewModel (MVVM) architecture, which is standard for WPF applications. However, you can copy this code into your own MVVM application with few modifications.
2424

25-
The final code for this tutorial can be found in GitHub at [Visual Studio Tutorial Samples - EF6](https://github.com/MicrosoftDocs/vs-tutorial-samples/tree/master/ef6).
25+
The final code for this tutorial can be found in GitHub at [Visual Studio Tutorial Samples - EF6](https://github.com/MicrosoftDocs/vs-tutorial-samples/tree/main/ef6).
2626

2727
## Install and connect to Northwind
2828

docs/debugger/create-custom-views-of-managed-objects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ There are two options to create a visualizer for a .NET type:
4242
- **Using Microsoft.VisualStudio.DebuggerVisualizers.DialogDebuggerVisualizer:** For more information on this approach, see [Custom visualizers](create-custom-visualizers-of-data.md).
4343

4444
> [!NOTE]
45-
> To create a visualizer for C/C++ objects, see [UIVisualizer element](../debugger/create-custom-views-of-native-objects.md#BKMK_UIVisualizer) within the [Natvis](../debugger/create-custom-views-of-native-objects.md) documentation. Also, see the [C/C++ custom visualizer sample](https://github.com/Microsoft/ConcordExtensibilitySamples/tree/master/CppCustomVisualizer) or the [SQLite native Debugger Visualizer](https://github.com/Microsoft/VSSDK-Extensibility-Samples/tree/master/SqliteVisualizer) sample.
45+
> To create a visualizer for C/C++ objects, see [UIVisualizer element](../debugger/create-custom-views-of-native-objects.md#BKMK_UIVisualizer) within the [Natvis](../debugger/create-custom-views-of-native-objects.md) documentation. Also, see the [C/C++ custom visualizer sample](https://github.com/Microsoft/ConcordExtensibilitySamples/tree/main/CppCustomVisualizer) or the [SQLite native Debugger Visualizer](https://github.com/Microsoft/VSSDK-Extensibility-Samples/tree/master/SqliteVisualizer) sample.
4646
4747
## Related content
4848

docs/debugger/debug-interface-access/idiaenumsourcelink.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The following table shows the methods of `IDiaEnumSourceLink`.
3636

3737
## Remarks
3838

39-
Although [Source Link](https://github.com/dotnet/designs/blob/master/accepted/2020/diagnostics/source-link.md) is a well defined standard, the PDB and Debug Interface Access (DIA) SDK only have limited support for it. Specifically the DIA SDK treats the source link as a simple blob of bytes. It is the responsiblity of the caller to interpret those bytes as the correct character encoding (UTF-8, ASCII, and so on), parse as a JSON file, enforce a particular schema, or use that information to map and download individual source files.
39+
Although [Source Link](https://github.com/dotnet/designs/blob/main/accepted/2020/diagnostics/source-link.md) is a well defined standard, the PDB and Debug Interface Access (DIA) SDK only have limited support for it. Specifically the DIA SDK treats the source link as a simple blob of bytes. It is the responsiblity of the caller to interpret those bytes as the correct character encoding (UTF-8, ASCII, and so on), parse as a JSON file, enforce a particular schema, or use that information to map and download individual source files.
4040

4141
## Notes for Callers
4242

@@ -46,7 +46,7 @@ Obtain this interface by calling the [`IDiaSessionEx::getSourceLinkInfo`](../../
4646

4747
- [Interfaces (Debug Interface Access SDK)](../../debugger/debug-interface-access/interfaces-debug-interface-access-sdk.md)
4848
- [`IDiaSessionEx::getSourceLinkInfo`](../../debugger/debug-interface-access/idiasessionex-getsourcelinkinfo.md)
49-
- [Source Link](https://github.com/dotnet/designs/blob/master/accepted/2020/diagnostics/source-link.md)
49+
- [Source Link](https://github.com/dotnet/designs/blob/main/accepted/2020/diagnostics/source-link.md)
5050
- [Using Source Link](https://github.com/dotnet/sourcelink#using-source-link-in-c-projects)
5151
- [/SOURCELINK (Include Source Link file in PDB)](/cpp/build/reference/sourcelink)
5252
- [`IDiaEnumSourceLink2`](../../debugger/debug-interface-access/idiaenumsourcelink2.md)

docs/debugger/debug-interface-access/idiaenumsourcelink2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Obtain this interface by calling the [`IDiaSessionEx::getSourceLinkInfo`](../../
4242

4343
- [Interfaces (Debug Interface Access SDK)](../../debugger/debug-interface-access/interfaces-debug-interface-access-sdk.md)
4444
- [`IDiaSessionEx::getSourceLinkInfo`](../../debugger/debug-interface-access/idiasessionex-getsourcelinkinfo.md)
45-
- [Source Link](https://github.com/dotnet/designs/blob/master/accepted/2020/diagnostics/source-link.md)
45+
- [Source Link](https://github.com/dotnet/designs/blob/main/accepted/2020/diagnostics/source-link.md)
4646
- [Using Source Link](https://github.com/dotnet/sourcelink#using-source-link-in-c-projects)
4747
- [/SOURCELINK (Include Source Link file in PDB)](/cpp/build/reference/sourcelink)
4848
- [`IDiaEnumSourceLink`](../../debugger/debug-interface-access/idiaenumsourcelink.md)

docs/debugger/debug-interface-access/idiasessionex-getsourcelinkinfo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.subservice: debug-diagnostics
1515

1616
# IDiaSessionEx::getSourceLinkInfo
1717

18-
Retrieves an enumeration of [Source Link](https://github.com/dotnet/designs/blob/master/accepted/2020/diagnostics/source-link.md) information.
18+
Retrieves an enumeration of [Source Link](https://github.com/dotnet/designs/blob/main/accepted/2020/diagnostics/source-link.md) information.
1919

2020
## Syntax
2121

@@ -43,6 +43,6 @@ HRESULT getSourceLinkInfo(
4343
## See also
4444

4545
- [`IDiaSessionEx`](../../debugger/debug-interface-access/idiasessionex.md)
46-
- [Source Link](https://github.com/dotnet/designs/blob/master/accepted/2020/diagnostics/source-link.md)
46+
- [Source Link](https://github.com/dotnet/designs/blob/main/accepted/2020/diagnostics/source-link.md)
4747
- [Using Source Link](https://github.com/dotnet/sourcelink#using-source-link-in-c-projects)
4848
- [/SOURCELINK (Include Source Link file in PDB)](/cpp/build/reference/sourcelink)

docs/debugger/debug-interface-access/idiasymbol10-get-sourcelink.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.subservice: debug-diagnostics
1414
---
1515
# IDiaSymbol10::get_sourceLink
1616

17-
Retreives the [Source Link](https://github.com/dotnet/designs/blob/master/accepted/2020/diagnostics/source-link.md) blob associated with this `SymTagCompiland` symbol.
17+
Retreives the [Source Link](https://github.com/dotnet/designs/blob/main/accepted/2020/diagnostics/source-link.md) blob associated with this `SymTagCompiland` symbol.
1818

1919
## Syntax
2020

docs/debugger/debug-interface-access/idiasymbol10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The following table shows the methods of `IDiaSymbol10`.
3131
3232
|Method|Description|
3333
|------------|-----------------|
34-
|[`IDiaSymbol10::get_sourceLink`](../../debugger/debug-interface-access/idiasymbol10-get-sourcelink.md)|Retreives the [Source Link](https://github.com/dotnet/designs/blob/master/accepted/2020/diagnostics/source-link.md) blob associated with this `SymTagCompiland` symbol.|
34+
|[`IDiaSymbol10::get_sourceLink`](../../debugger/debug-interface-access/idiasymbol10-get-sourcelink.md)|Retreives the [Source Link](https://github.com/dotnet/designs/blob/main/accepted/2020/diagnostics/source-link.md) blob associated with this `SymTagCompiland` symbol.|
3535

3636
## Remarks
3737

docs/debugger/debugging-linq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ End Function
9999
The revised query calls the function `IsEven` on each pass through the `items`. You can use the debugger windows to see whether each item meets the specified condition, and you can step through the code in `IsEven`. The predicate in this example is fairly simple. However, if you have a more difficult predicate you have to debug, this technique can be very useful.
100100

101101
## <a name="BKMK_EditandContinueNotSupportedforLINQ"></a> Edit and Continue Not Supported for LINQ
102-
Edit and Continue supports changes to LINQ queries with limitations. For details, see [EnC Supported Changes](https://github.com/dotnet/roslyn/blob/master/docs/wiki/EnC-Supported-Edits.md)
102+
Edit and Continue supports changes to LINQ queries with limitations. For details, see [EnC Supported Changes](https://github.com/dotnet/roslyn/blob/main/docs/wiki/EnC-Supported-Edits.md)
103103

104104
## Related content
105105

0 commit comments

Comments
 (0)