Skip to content

Commit 62c5401

Browse files
authored
Merge pull request #14085 from Mikejo5000/mikejo-br25
Update author values for Test
2 parents 0023c7e + 174cc79 commit 62c5401

6 files changed

+11
-13
lines changed

docs/ide/code-styles-and-code-cleanup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ You can define code style settings per-project by using an [EditorConfig file](#
3333

3434
Code style settings can be specified by adding an [EditorConfig](../ide/create-portable-custom-editor-options.md) file to your project. EditorConfig files are associated with a codebase rather than a Visual Studio personalization account. Settings in an EditorConfig file take precedence over code styles that are specified in the **Options** dialog box. Use an EditorConfig file when you want to enforce coding styles for all contributors to your repo or project. They are especially useful to ensure consistency in a teams programming environment.
3535

36-
To add an EditorConfig file, see [Ways to add an EditorConfig file](../ide/create-portable-custom-editor-options.md#ways-to-add-an-editorconfig-file).
36+
To add an EditorConfig file, see [Add and remove EditorConfig files](../ide/create-portable-custom-editor-options.md#add-and-remove-editorconfig-files).
3737
::: zone-end
3838

3939
::: zone pivot="programming-language-dotnet,programming-language-dotnetf"

docs/ide/create-portable-custom-editor-options.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Define consistent coding styles with EditorConfig
33
description: Add an EditorConfig file to your project or codebase to enforce consistent coding styles for everyone that works in the codebase.
4-
ms.date: 05/08/2025
4+
ms.date: 07/07/2025
55
author: mikejo5000
66
ms.author: mikejo
77
manager: mijacobs
@@ -19,7 +19,7 @@ To enforce consistent coding styles for everyone that works in a codebase, you c
1919

2020
In Visual Studio, EditorConfig file settings take precedence over the various global text editor settings available under **Tools** > **Options** > **Text Editor** > **\[C# | C/C++ | Visual Basic\]** > **Code Style**. You can use an EditorConfig file to tailor each codebase to use text editor settings that are specific to that project.
2121

22-
You can manually populate an EditorConfig file, or automatically generate it based on the code style settings you've chosen in Visual Studio. For more information, see [Ways to add an EditorConfig file](#ways-to-add-an-editorconfig-file).
22+
You can manually populate an EditorConfig file, or automatically generate it based on the code style settings you've chosen in Visual Studio. For more information, see [Ways to add an EditorConfig file](#add-and-remove-editorconfig-files).
2323

2424
When you use an EditorConfig file, you can still continue to set your own personal editor preferences in the Visual Studio text editor. These text editor settings apply whenever you're working in a codebase without an EditorConfig file, or when the EditorConfig file doesn't override a particular setting. An example of such a preference is whether to use tabs or spaces for the code indent style.
2525

@@ -61,8 +61,6 @@ When you add an EditorConfig file to your project or codebase, Visual Studio for
6161

6262
If you remove an EditorConfig file from your project or codebase, you must close and reopen any open code files for the global editor settings to affect new lines of code.
6363

64-
### Ways to add an EditorConfig file
65-
6664
There are a couple of ways you can add an EditorConfig file to your project:
6765

6866
- [Automatically generate an EditorConfig file based on your code-style settings](../ide/code-styles-and-code-cleanup.md#code-styles-in-editorconfig-files).

docs/test/code-generation-compilation-and-naming-conventions-in-microsoft-fakes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ title: Configure Microsoft Fakes code generation
33
description: Learn about options and issues in Fakes code generation and compilation, including the naming conventions for Fakes-generated types, members, and parameters.
44
ms.date: 05/23/2023
55
ms.topic: conceptual
6-
ms.author: oscalles
6+
ms.author: mikejo
77
manager: aajohn
88
ms.subservice: test-tools
9-
author: ocallesp
9+
author: mikejo5000
1010
---
1111
# Code generation, compilation, and naming conventions in Microsoft Fakes
1212

docs/test/isolating-code-under-test-with-microsoft-fakes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ title: Isolating Code Under Test with Microsoft Fakes
33
description: Learn how Microsoft Fakes helps you isolate the code you are testing by replacing other parts of the application with stubs or shims.
44
ms.date: 05/23/2023
55
ms.topic: how-to
6-
ms.author: oscalles
6+
ms.author: mikejo
77
manager: aajohn
88
ms.subservice: test-tools
9-
author: ocallesp
9+
author: mikejo5000
1010
dev_langs:
1111
- VB
1212
- CSharp

docs/test/using-shims-to-isolate-your-application-from-other-assemblies-for-unit-testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ title: Isolate your app with shims (unit testing)
33
description: Learn how to use shim types to divert calls to specific methods to code that you write as part of your test. A shim can return consistent results at every call.
44
ms.date: 05/23/2023
55
ms.topic: how-to
6-
ms.author: oscalles
6+
ms.author: mikejo
77
manager: aajohn
88
ms.subservice: test-tools
9-
author: ocallesp
9+
author: mikejo5000
1010
dev_langs:
1111
- CSharp
1212
- VB

docs/test/using-stubs-to-isolate-parts-of-your-application-from-each-other-for-unit-testing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ title: Use stubs to isolate parts of your app for testing
33
description: Learn about a stub, which is a small piece of code that takes the place of another component during testing. Using a stub returns consistent results.
44
ms.date: 10/25/2023
55
ms.topic: how-to
6-
ms.author: oscalles
6+
ms.author: mikejo
77
manager: aajohn
88
ms.subservice: test-tools
9-
author: ocallesp
9+
author: mikejo5000
1010
dev_langs:
1111
- CSharp
1212
- VB

0 commit comments

Comments
 (0)