Skip to content

Commit 9f54ba2

Browse files
committed
Merging changes synced from https://github.com/MicrosoftDocs/visualstudio-docs-pr (branch live)
2 parents 22ea712 + 240940b commit 9f54ba2

File tree

5 files changed

+9
-2
lines changed

5 files changed

+9
-2
lines changed

.github/workflows/stale-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
pull-requests: write # for actions/stale to close stale PRs
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/stale@v5
22+
- uses: actions/stale@v6
2323
with:
2424
repo-token: ${{ secrets.GITHUB_TOKEN }}
2525
stale-issue-message: 'Thanks for sharing your feedback. We apologize for our delayed response. Due to the sheer volume of feedback in our repo, we have decided to prioritize the newest issues and are automatically closing our oldest issues with an Issues bot. If you believe your feedback is still actionable, then either respond directly in this issue or open a new documentation issue and we’ll review. If no activity occurs in the next 14 days, this issue will be closed.'

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write
1414

1515
steps:
16-
- uses: actions/stale@v5.1.1
16+
- uses: actions/stale@v6
1717
with:
1818
repo-token: ${{ secrets.GITHUB_TOKEN }}
1919
days-before-pr-stale: 14

docs/extensibility/how-to-use-the-activity-log.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ VSPackages can write messages to the activity log. This feature is especially us
5454
```
5555
Called for: Company.MyApp.MyAppPackage ...
5656
```
57+
## Troubleshooting Import/Export Issues in Editor Extensions: Access the MEF Composition Error Log
58+
When writing an editor-based extension, you may experience issues if you try to import something that doesn't exist in the current VS install, or if you incorrectly author your import or export. The primary way to find and address these issues is to reference the **Managed Extensibility Framework (MEF) Composition Error Log**, stored at *%localappdata%\Microsoft\VisualStudio[yourVSVersion]\ComponentModelCache\Microsoft.VisualStudio.Default.err*. To learn more about using MEF in your extensions, check out [this documentation](../extensibility/managed-extensibility-framework-in-the-editor.md).
5759

5860
## Robust programming
5961

docs/extensibility/inside-the-editor.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,9 @@ IntelliSense supports statement completion, signature help (also known as parame
317317

318318
Statement completion provides pop-up lists of potential completions for method names, XML elements, and other coding or markup elements. In general, a user gesture invokes a completion session. The session displays the list of potential completions, and the user can select one or dismiss the list. The <xref:Microsoft.VisualStudio.Language.Intellisense.ICompletionBroker> is responsible for creating and triggering the <xref:Microsoft.VisualStudio.Language.Intellisense.ICompletionSession>. The <xref:Microsoft.VisualStudio.Language.Intellisense.ICompletionSource> computes the <xref:Microsoft.VisualStudio.Language.Intellisense.CompletionSet> of completion items for the session.
319319

320+
## Troubleshooting Import/Export Issues: Access the MEF Composition Error Log
321+
You may experience issues if you try to import something that doesn't exist in the current VS install, or if you incorrectly author your import or export. The primary way to find and address these issues is to reference the **Managed Extensibility Framework (MEF) Composition Error Log**, stored at *%localappdata%\Microsoft\VisualStudio[yourVSVersion]\ComponentModelCache\Microsoft.VisualStudio.Default.err*.
322+
320323
## See also
321324

322325
- [Language service and editor extension points](../extensibility/language-service-and-editor-extension-points.md)

docs/extensibility/managed-extensibility-framework-in-the-editor.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ public AdornmentLayerDefinition scarletLayerDefinition;
7575
[Import]
7676
internal IClassificationTypeRegistryService ClassificationRegistry;
7777
```
78+
## Troubleshooting Import/Export Issues: Access the MEF Composition Error Log
79+
You may experience issues if you try to import something that doesn't exist in the current VS install, or if you incorrectly author your import or export. The primary way to find and address these issues is to reference the **Managed Extensibility Framework (MEF) Composition Error Log**, stored at *%localappdata%\Microsoft\VisualStudio[yourVSVersion]\ComponentModelCache\Microsoft.VisualStudio.Default.err*.
7880

7981
## Get editor functionality from a MEF component part
8082
If your existing code is a MEF component part, you can use MEF metadata to consume editor component parts.

0 commit comments

Comments
 (0)