Skip to content

Commit 51885a1

Browse files
committed
Merged main into live
2 parents ccd7b76 + ee9017d commit 51885a1

14 files changed

+52
-34
lines changed

docs/debugger/decompilation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ The following illustration shows the **Source Not Found** message.
4444

4545
Starting in Visual Studio 2022 version 17.7, the Visual Studio Debugger supports autodecompilation of external .NET code. You can autodecompile when stepping into external code or when using the Call Stack window.
4646

47-
If you step into code that has been implemented externally, the debugger automatically decompiles it and displays the current point of execution. If you want to step into external code, [Just My Code](../debugger/just-my-code.md) must be disabled.
47+
If you step into code that has been implemented externally, the debugger automatically decompiles it and displays the current point of execution. If you want to step into external code, disable [Just My Code](../debugger/just-my-code.md).
4848

49-
You can easy decompile from the Call Stack window without disabling Just My Code.
49+
You can decompile from the Call Stack window without disabling Just My Code.
5050

5151
To autodecompile from the Call Stack window:
5252

docs/debugger/how-to-debug-in-mixed-mode.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Debug in Mixed Mode (managed and native code)
33
description: Enable mixed-mode debugging (managed and native code together) in Visual Studio with the property pages of the calling app's project.
4-
ms.date: 08/19/2024
4+
ms.date: 09/18/2024
55
ms.topic: how-to
66
dev_langs:
77
- CSharp
@@ -58,6 +58,8 @@ To enable mixed-mode debugging for a managed calling app in C# or Visual Basic,
5858
1. In the **Properties** pane, enable mixed-mode debugging by setting the following property:
5959

6060
::: moniker range=">=vs-2022"
61+
62+
**.NET code**
6163

6264
1. On the left menu, select **Debug**.
6365

docs/debugger/how-to-debug-managed-and-native-code.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Tutorial: Debug C# and C++ code (mixed mode)"
33
description: Debug a native DLL from a .NET Core or .NET Framework application by using mixed-mode debugging to enable more than one debugger type in a debugging session.
4-
ms.date: 10/19/2023
4+
ms.date: 09/18/2024
55
ms.topic: tutorial
66
dev_langs:
77
- "CSharp"
@@ -176,8 +176,15 @@ If you have Visual Studio installed, but don't have the workloads you need, sele
176176
1. Enable native code debugging in the properties.
177177

178178
::: moniker range=">=vs-2022"
179+
**.NET code**
180+
179181
Select **Debug** in the left pane, select **Open debug launch profiles UI**, then select the **Enable native code debugging** check box, and then close the properties page to save the changes.
182+
180183
![Enable mixed mode debugging](../debugger/media/vs-2022/mixed-mode-enable-native-code-debugging.png)
184+
185+
**.NET Framework code**
186+
187+
On the left menu, select **Debug**. Then, in the **Debugger engines** section, select the **Enable native code debugging** property, and then close the properties page to save the changes.
181188
::: moniker-end
182189
::: moniker range="<=vs-2019"
183190
Select **Debug** in the left pane, select the **Enable native code debugging** check box, and then close the properties page to save the changes.

docs/javascript/tutorial-asp-net-core-with-angular.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Make sure to install the following:
3333
- Visual Studio 2022 version 17.8 or later with the **ASP.NET and web development** workload installed. Go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/?cid=learn-onpage-download-create-aspnetcore-app-with-angular-page-cta) page to install it for free.
3434
If you need to install the workload and already have Visual Studio, go to **Tools** > **Get Tools and Features...**, which opens the Visual Studio Installer. Choose the **ASP.NET and web development** workload, then choose **Modify**.
3535
- npm ([`https://www.npmjs.com/`](https://www.npmjs.com/package/npm)), which is included with Node.js
36-
- Angular CLI ([`https://angular.io/cli`](https://angular.io/cli)), which can be the version of your choice.
36+
- Angular CLI ([`https://angular.dev/tools/cli`](https://angular.dev/tools/cli)), which can be the version of your choice.
3737

3838
## Create the frontend app
3939

@@ -152,7 +152,10 @@ You may see the following error:
152152
[HPM] Error occurred while trying to proxy request /weatherforecast from localhost:4200 to https://localhost:5001 (ECONNREFUSED) (https://nodejs.org/api/errors.html#errors_common_system_errors)
153153
```
154154

155-
If you see this issue, most likely the frontend started before the backend. Once you see the backend command prompt up and running, just refresh the Angular App in the browser.
155+
If you see this issue, most likely the frontend started before the backend.
156+
157+
- Once you see the backend command prompt up and running, just refresh the Angular app in the browser.
158+
- Also, verify that the backend is configured to start before the front end. To verify, select the solution in Solution Explorer, choose **Properties** from the **Project menu**. Next, select **Configure Startup Projects** and make sure that the backend ASP.NET Core project is first in the list. If it's not first, select the project and use the Up arrow button to make it the first project in the launch list.
156159

157160
### Verify port
158161

docs/javascript/tutorial-asp-net-core-with-react.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,10 @@ You may see the following error:
144144
[HPM] Error occurred while trying to proxy request /weatherforecast from localhost:4200 to https://localhost:7183 (ECONNREFUSED) (https://nodejs.org/api/errors.html#errors_common_system_errors)
145145
```
146146

147-
If you see this issue, most likely the frontend started before the backend. Once you see the backend command prompt up and running, just refresh the React App in the browser.
147+
If you see this issue, most likely the frontend started before the backend.
148+
149+
- Once you see the backend command prompt up and running, just refresh the React app in the browser.
150+
- Also, verify that the backend is configured to start before the front end. To verify, select the solution in Solution Explorer, choose **Properties** from the **Project menu**. Next, select **Configure Startup Projects** and make sure that the backend ASP.NET Core project is first in the list. If it's not first, select the project and use the Up arrow button to make it the first project in the launch list.
148151

149152
### Verify ports
150153

docs/javascript/tutorial-asp-net-core-with-vue.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,10 @@ You may see the following error:
146146
[HPM] Error occurred while trying to proxy request /weatherforecast from localhost:4200 to https://localhost:5173 (ECONNREFUSED) (https://nodejs.org/api/errors.html#errors_common_system_errors)
147147
```
148148

149-
If you see this issue, most likely the frontend started before the backend. Once you see the backend command prompt up and running, just refresh the Vue app in the browser.
149+
If you see this issue, most likely the frontend started before the backend.
150+
151+
- Once you see the backend command prompt up and running, just refresh the Vue app in the browser.
152+
- Also, verify that the backend is configured to start before the front end. To verify, select the solution in Solution Explorer, choose **Properties** from the **Project menu**. Next, select **Configure Startup Projects** and make sure that the backend ASP.NET Core project is first in the list. If it's not first, select the project and use the Up arrow button to make it the first project in the launch list.
150153

151154
Otherwise, if the port is in use, try incrementing the port number by **1** in `launchSettings.json` and *vite.config.js*.
152155

docs/javascript/tutorial-create-angular-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Make sure to install the following:
2424

2525
- Visual Studio 2022 or later. Go to the [Visual Studio downloads](https://visualstudio.microsoft.com/downloads/?cid=learn-onpage-download-cta) page to install it for free.
2626
- npm ([`https://www.npmjs.com/`](https://www.npmjs.com/package/npm)), which is included with Node.js
27-
- Angular CLI ([`https://angular.io/cli`](https://angular.io/cli)), which can be the version of your choice.
27+
- Angular CLI ([`https://angular.dev/tools/cli`](https://angular.dev/tools/cli)), which can be the version of your choice.
2828

2929
## Create your app
3030

subscriptions/download-software.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Download software titles in subscriptions
3-
author: evanwindom
3+
author: joseb-rdc
44
ms.author: amast
55
manager: shve
6-
ms.date: 03/06/2024
6+
ms.date: 09/17/2024
77
ms.topic: conceptual
88
description: Find and download Microsoft software titles in Visual Studio subscriptions and locate the software you need to get the most out of your subscription.
99
---

subscriptions/faq/admin/benefits/includes/activate-subscriptions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ comment: As of August 2023 this include is used to render marketing FAQ content
55
ms.faqid: group2_1
66
ms.topic: include
77
ms.assetid: 1530ca0a-f23f-44f1-9bde-792ea1265085
8-
author: evanwindom
8+
author: joseb-rdc
99
ms.author: amast
10-
ms.date: 08/08/2023
10+
ms.date: 09/18/2024
1111
---
1212

1313
## How do my end users activate their Visual Studio subscription?
1414

15-
The subscription is active and can be used as soon as it has been assigned from within the [Visual Studio Administrator portal](https://manage.visualstudio.com/subscribers). The subscriber can sign into the [Visual Studio Subscribers portal](https://my.visualstudio.com/) or Visual Studio IDE right away. They'll receive a welcome email letting them know the subscription has been assigned.
15+
The subscription is active and can be used as soon as it has been assigned from within the [Visual Studio Administrator portal](https://manage.visualstudio.com/subscribers). The subscriber can sign into the [Visual Studio Subscribers portal](https://my.visualstudio.com/) or Visual Studio IDE right away. They'll receive a welcome email letting them know the subscription has been assigned.

subscriptions/faq/admin/benefits/includes/activate-with-product-keys.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ comment: As of August 2023 this include is used to render marketing FAQ content
55
ms.faqid: group2_4
66
ms.topic: include
77
ms.assetid: 248726b6-1e50-481c-aabf-0f509da5d710
8-
author: evanwindom
8+
author: joseb-rdc
99
ms.author: amast
10-
ms.date: 08/08/2023
10+
ms.date: 09/18/2024
1111
---
1212

1313
## How do my developers activate software using product keys from their Visual Studio subscription?

subscriptions/faq/admin/benefits/includes/available-benefits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ comment: As of August 2023 this include is used to render marketing FAQ content
55
ms.faqid: group2_2
66
ms.topic: include
77
ms.assetid: e8b196c2-6118-47d1-8363-ceae3d9b6fb2
8-
author: evanwindom
8+
author: joseb-rdc
99
ms.author: amast
10-
ms.date: 08/08/2023
10+
ms.date: 09/18/2024
1111
---
1212

1313
## What benefits and software are available to my subscribers after a Visual Studio subscription has been assigned?

subscriptions/faq/admin/benefits/includes/azure-dev-test-discount.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ comment: As of August 2023 this include is used to render marketing FAQ content
55
ms.faqid: group2_5
66
ms.topic: include
77
ms.assetid: 86308cf3-909b-47a0-9230-5d1a93a2f87a
8-
author: evanwindom
8+
author: joseb-rdc
99
ms.author: amast
10-
ms.date: 08/08/2023
10+
ms.date: 09/18/2024
1111
---
1212

1313
## How do my developers get 50% off Azure dev/test workloads?

subscriptions/faq/admin/benefits/includes/download-visual-studio.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ comment: As of August 2023 this include is used to render marketing FAQ content
55
ms.faqid: group2_3
66
ms.topic: include
77
ms.assetid: ee7e5ba2-a4b5-4db0-bd05-583dca51c75e
8-
author: evanwindom
8+
author: joseb-rdc
99
ms.author: amast
10-
ms.date: 08/08/2023
10+
ms.date: 09/18/2024
1111
---
1212

1313
## How do my developers download Visual Studio?
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
---
22
title: What happens when a subscription expires?
3-
author: evanwindom
3+
author: joseb-rdc
44
ms.author: amast
55
manager: shve
6-
ms.date: 04/03/2023
6+
ms.date: 09/17/2024
77
ms.topic: conceptual
88
description: Understand what happens when a Visual Studio subscription expires, including changes to available downloads, product keys, Azure credits, and other benefits.
99
---
1010

1111
# What happens when your subscription expires
1212

13-
Visual Studio subscriptions have specific durations, and unless they're renewed, they'll expire. When a subscription expires, the benefits provided by the subscription are impacted in different ways. This article explains how expiration affects various aspects of a Visual Studio subscription.
13+
Visual Studio subscriptions have specific durations, and unless they're renewed, they'll expire. When a subscription expires, the benefits provided by the subscription are impacted in different ways. This article explains how expiration affects various aspects of a Visual Studio subscription.
1414

1515
If you would like to purchase a new subscription, you can explore purchasing options on our [pricing page](https://visualstudio.microsoft.com/vs/pricing).
1616

1717
## Downloads
1818

19-
The product downloads page, <https://my.visualstudio.com/downloads>, are still available so you can download software, but you can't claim new product keys. Updates, patches, and other tools may still be available on the [Microsoft Download Center](https://www.microsoft.com/downloads). Products you've previously downloaded via your subscription are still valid.
19+
The product downloads page, <https://my.visualstudio.com/downloads>, are still available so you can download software, but you can't claim new product keys. Updates, patches, and other tools might still be available on the [Microsoft Download Center](https://www.microsoft.com/downloads). Products you've previously downloaded via your subscription are still valid.
2020

2121
## Product keys
2222

23-
The product keys page, <https://my.visualstudio.com/productkeys>, is no longer available. Any product keys you've previously claimed still function as they normally would. All installation limits remain unaffected.
23+
The product keys page, <https://my.visualstudio.com/productkeys>, is no longer available. Any product keys you've previously claimed still function as they normally would. All installation limits remain unaffected.
2424
> [!IMPORTANT]
2525
> To ensure that your product keys are available after your subscription expires, you need to export them before the expiration date of your subscription. To export your keys, connect to the [Product Keys](https://my.visualstudio.com/productkeys) page and select the blue **Export all keys** button.
2626
2727
## Benefits
2828

29-
Not all benefits are impacted in the same way when a subscription expires. No benefits can be activated after your subscription expires. Benefits you've previously activated may still be available, depending on how they are authenticated. Most third party benefits such as Pluralsight training are still available for the duration of the benefit. Benefits that require validation that a Visual Studio subscription is still current are not available.
29+
Not all benefits are impacted in the same way when a subscription expires. No benefits can be activated after your subscription expires. Benefits you've previously activated might still be available, depending on how they are authenticated. Most third party benefits such as Pluralsight training are still available for the duration of the benefit. Benefits that require validation that a Visual Studio subscription is still current are not available.
3030

3131
### Visual Studio IDE
3232

33-
Most subscriptions provide perpetual licenses for the Visual Studio IDE. Download the Visual Studio [Licensing White Paper](https://aka.ms/vslicensing) to determine if your subscription is eligible for perpetual use rights. If your subscription is eligible, you'll continue to have access to your **current version** of the IDE but won't receive updates to future versions. To continue using the IDE after expiration, go to the [product key page](https://my.visualstudio.com/productkeys) and download the product key **before your subscription expires**. After claiming the key, [enter it](/visualstudio/ide/how-to-unlock-visual-studio#enter-a-product-key) to activate your IDE installation.
33+
Most subscriptions provide perpetual licenses for the Visual Studio IDE. Download the Visual Studio [Licensing White Paper](https://aka.ms/vslicensing) to determine if your subscription is eligible for perpetual use rights. If your subscription is eligible, you'll continue to have access to your **current version** of the IDE but won't receive updates to future versions. To continue using the IDE after expiration, go to the [product key page](https://my.visualstudio.com/productkeys) and download the product key **before your subscription expires**. After claiming the key, [enter it](/visualstudio/ide/how-to-unlock-visual-studio#enter-a-product-key) to activate your IDE installation.
3434

3535
### Azure DevOps
3636

3737
Azure DevOps acquired through a Visual Studio subscription is unavailable.
3838

3939
### Azure credits
4040

41-
Monthly Azure credit allotments continue for a limited time following expiration of your subscription. Unused credits already applied to your Azure subscription in the current month are still available for your use. If you wish to continue using Azure resources from that subscription after your credits are exhausted, you can either [transfer those resources](/azure/azure-resource-manager/management/move-resource-group-and-subscription) to another Azure subscription or [convert your existing subscription to pay-as-you-go](/azure/cost-management-billing/manage/spending-limit#remove-the-spending-limit-in-azure-portal).
41+
Monthly Azure credit allotments continue for a limited time following expiration of your subscription. Unused credits already applied to your Azure subscription in the current month are still available for your use. If you wish to continue using Azure resources from that subscription after your credits are exhausted, you can either [transfer those resources](/azure/azure-resource-manager/management/move-resource-group-and-subscription) to another Azure subscription or [convert your existing subscription to pay-as-you-go](/azure/cost-management-billing/manage/spending-limit#remove-the-spending-limit-in-azure-portal).
4242

4343
### Other benefits
4444

45-
Many of the benefits included in Visual Studio subscriptions have specific durations. Benefits provided by Microsoft's partners such as Pluralsight, DataCamp, or WhiteSource have time limits after they're activated. Benefits you've previously activated are available to you for the remainder of their terms. For example, if you've activated a six-month LinkedIn Learning subscription and it still has four months remaining when your Visual Studio subscription expires, you can access it for those four months.
45+
Many of the benefits included in Visual Studio subscriptions have specific durations. Benefits provided by Microsoft's partners such as Pluralsight, DataCamp, or WhiteSource have time limits after they're activated. Benefits you've previously activated are available to you for the remainder of their terms. For example, if you've activated a six-month LinkedIn Learning subscription and it still has four months remaining when your Visual Studio subscription expires, you can access it for those four months.
4646

4747
## Resources
4848

49-
For assistance with sales, subscriptions, accounts and billing for Visual Studio Subscriptions, see Visual Studio [Subscriptions support](https://aka.ms/vssubscriberhelp).
49+
For assistance with sales, subscriptions, accounts, and billing for Visual Studio Subscriptions, see Visual Studio [Subscriptions support](https://aka.ms/vssubscriberhelp).
5050

5151
## See also
5252

@@ -57,6 +57,6 @@ For assistance with sales, subscriptions, accounts and billing for Visual Studio
5757

5858
## Next steps
5959

60-
+ To prevent your subscription from expiring, be sure to renew it prior to its expiration date. You can find the expiration date for your subscription(s) at <https://my.visualstudio.com/subscriptions>.
61-
+ If your subscription is provided to you by your work or school, you may want to [contact your subscriptions admin](contact-my-admin.md) for assistance with your subscription or questions you have about transferring Azure resources to another subscription, etc.
60+
+ To prevent your subscription from expiring, be sure to renew it prior to its expiration date. You can find the expiration date for your subscription(s) at <https://my.visualstudio.com/subscriptions>.
61+
+ If your subscription is provided to you by your work or school, you might want to [contact your subscriptions admin](contact-my-admin.md) for assistance with your subscription or questions you have about transferring Azure resources to another subscription, etc.
6262
+ If you would like to purchase a new subscription, you can explore purchasing options on our [pricing page](https://visualstudio.microsoft.com/vs/pricing).

0 commit comments

Comments
 (0)