Skip to content

Commit ffc4e3c

Browse files
committed
Merged main into live
2 parents b7499a9 + 749f923 commit ffc4e3c

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

docs/ide/copilot-usage-and-models.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,32 +19,34 @@ GitHub Copilot includes built-in tools to help you track usage, manage your plan
1919
To track your Copilot usage:
2020

2121
1. Select the **Copilot badge** in the top-right corner of Visual Studio.
22-
2. Select **Copilot Consumptions**.
22+
1. Select **Copilot Consumptions** from the menu to view the dialog.
2323

2424
:::image type="content" source="media/vs-2022/copilot-usage-models/copilot-consumptions-panel.png" alt-text="Screenshot that shows Copilot Consumptions panel." lightbox="media/vs-2022/copilot-usage-models/copilot-consumptions-panel.png":::
2525

26-
Here, you can view your usage and the number of remaining requests. You can also select **Get more requests** to manage your Copilot plan on *GitHub*.
26+
Here, you can view your usage and the number of remaining requests. You can also select **Get more requests** to manage your Copilot plan on *GitHub*.
2727

2828
> [!NOTE]
29-
> GitHub manages billing and subscriptions. For more information, go to [GitHub.com](https://github.com/)
29+
> GitHub manages billing and subscriptions. For details, visit your [GitHub settings](https://github.com/settings/billing/summary).
3030
3131
## Understand model selection
3232

33-
Copilot supports multiple AI models, and each model may consume requests at different rates based on assigned multipliers.
33+
Copilot supports multiple AI models, and each model may consume requests at different rates based on assigned [multipliers](https://docs.github.com/copilot/managing-copilot/monitoring-usage-and-entitlements/about-premium-requests#model-multipliers).
3434

3535
To view or change your current model:
36+
3637
1. Open the **Copilot Chat** window.
37-
2. Use the **model picker** dropdown above the input field to select a model.
38+
1. Use the **model picker** dropdown above the input field to select a model.
3839

39-
When your [premium request quota](https://docs.github.com/en/copilot/about-github-copilot/plans-for-github-copilot#comparing-copilot-plans) is exhausted, Copilot automatically falls back to a base model so you can continue working without interruption.
40+
When your [premium request quota](https://docs.github.com/copilot/about-github-copilot/plans-for-github-copilot#comparing-copilot-plans) is exhausted, Copilot automatically falls back to a base model so you can continue working without interruption.
4041

4142
To manage model usage in non-chat interactions, configure the setting **Enhance non-chat requests with premium models** in **GitHub** > **Copilot** > **Editor**.
4243

4344
> [!TIP]
44-
> Visit your [Copilot settings on GitHub](https://docs.github.com/en/copilot/managing-copilot/monitoring-usage-and-entitlements/monitoring-your-copilot-usage-and-entitlements) to explore model options and subscription details.
45+
> Visit your [Copilot settings on GitHub](https://github.com/settings/copilot/features) to explore model options and subscription details.
4546
4647
## Related content
4748

4849
- [About premium requests](https://docs.github.com/copilot/managing-copilot/monitoring-usage-and-entitlements/about-premium-requests#premium-requests)
49-
- [About billing](https://docs.github.com/en/copilot/managing-copilot/managing-copilot-as-an-individual-subscriber/billing-and-payments/about-billing-for-individual-copilot-plans)
50+
- [About Copilot billing](https://docs.github.com/copilot/managing-copilot/managing-copilot-as-an-individual-subscriber/billing-and-payments/about-billing-for-individual-copilot-plans)
51+
- [GitHub support](https://support.github.com/)
5052
- [Install and manage GitHub Copilot in Visual Studio](visual-studio-github-copilot-install-and-states.md)

docs/ide/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### YamlMime:Landing
22

33
title: Visual Studio IDE documentation
4-
summary: An integrated development environment (IDE) is a feature-rich application that can be used for many aspects of software development. The Visual Studio IDE makes it easy to edit, debug, build, and publish your app.
4+
summary: An integrated development environment (IDE) is a feature-rich application that can be used for many aspects of software development. The Visual Studio IDE makes it easy to edit, debug, build, and publish all your development projects.
55

66
metadata:
77
title: Visual Studio IDE documentation
@@ -13,7 +13,7 @@ metadata:
1313
author: ghogen
1414
ms.author: ghogen
1515
ms.manager: mijacobs
16-
ms.date: 06/20/2024
16+
ms.date: 06/4/2025
1717
ms.custom: vs-acquisition
1818

1919
# linkListType: architecture | concept | deploy | download | get-started | how-to-guide | learn | overview | quickstart | reference | tutorial | video | whats-new

docs/msbuild/customize-by-directory.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,15 @@ It might be desirable to have common properties for all projects *(1)*, common p
118118
To make MSBuild correctly merge the "inner" files (*2-src* and *2-test*) with the "outer" file (*1*), you must take into account that once MSBuild finds a *Directory.Build.props* file, it stops further scanning. To continue scanning and merge into the outer file, place this code into both inner files:
119119

120120
```xml
121-
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
121+
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" Condition="'' != $([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
122122
```
123123

124124
A summary of MSBuild's general approach is as follows:
125125

126126
- For any given project, MSBuild finds the first *Directory.Build.props* upward in the solution structure, merges it with defaults, and stops scanning for more.
127127
- If you want multiple levels to be found and merged, then [`<Import...>`](../msbuild/property-functions.md#msbuild-getpathoffileabove) (shown previously) the "outer" file from the "inner" file.
128128
- If the "outer" file doesn't itself also import something above it, then scanning stops there.
129+
- Only do this if the uupper level file actual exists
129130

130131
Or more simply: the first *Directory.Build.props* that doesn't import anything is where MSBuild stops.
131132

docs/windows/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
titleSuffix: ""
88
description: Learn how to use Visual Studio to develop applications, services, and tools in the language of your choice, for any platform or device.
99
ms.topic: hub-page
10-
ms.date: 10/3/2024
10+
ms.date: 6/4/2025
1111
author: ghogen
1212
ms.author: ghogen
1313
manager: mijacobs
@@ -26,7 +26,7 @@ highlightedContent:
2626
url: ../ide/whats-new-visual-studio-2022.md
2727
- title: GitHub Copilot
2828
itemType: get-started
29-
url: ../ide/ai-assisted-development-visual-studio.md
29+
url: ../ide/visual-studio-github-copilot-install-and-states.md
3030
- title: Previous versions
3131
itemType: overview
3232
url: /previous-versions/visualstudio/

0 commit comments

Comments
 (0)