You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/debugger/decompilation.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -44,9 +44,9 @@ The following illustration shows the **Source Not Found** message.
44
44
45
45
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.
46
46
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).
48
48
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.
Copy file name to clipboardExpand all lines: docs/debugger/how-to-debug-managed-and-native-code.md
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "Tutorial: Debug C# and C++ code (mixed mode)"
3
3
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
5
5
ms.topic: tutorial
6
6
dev_langs:
7
7
- "CSharp"
@@ -176,8 +176,15 @@ If you have Visual Studio installed, but don't have the workloads you need, sele
176
176
1. Enable native code debugging in the properties.
177
177
178
178
::: moniker range=">=vs-2022"
179
+
**.NET code**
180
+
179
181
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.
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.
181
188
::: moniker-end
182
189
::: moniker range="<=vs-2019"
183
190
Select **Debug** in the left pane, select the **Enable native code debugging** check box, and then close the properties page to save the changes.
Copy file name to clipboardExpand all lines: docs/javascript/tutorial-asp-net-core-with-angular.md
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ Make sure to install the following:
33
33
- 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.
34
34
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**.
35
35
- 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.
37
37
38
38
## Create the frontend app
39
39
@@ -152,7 +152,10 @@ You may see the following error:
152
152
[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)
153
153
```
154
154
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.
Copy file name to clipboardExpand all lines: docs/javascript/tutorial-asp-net-core-with-react.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -144,7 +144,10 @@ You may see the following error:
144
144
[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)
145
145
```
146
146
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.
Copy file name to clipboardExpand all lines: docs/javascript/tutorial-asp-net-core-with-vue.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -146,7 +146,10 @@ You may see the following error:
146
146
[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)
147
147
```
148
148
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.
150
153
151
154
Otherwise, if the port is in use, try incrementing the port number by **1** in `launchSettings.json` and *vite.config.js*.
Copy file name to clipboardExpand all lines: docs/javascript/tutorial-create-angular-app.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Make sure to install the following:
24
24
25
25
- 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.
26
26
- 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.
Copy file name to clipboardExpand all lines: subscriptions/download-software.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
---
2
2
title: Download software titles in subscriptions
3
-
author: evanwindom
3
+
author: joseb-rdc
4
4
ms.author: amast
5
5
manager: shve
6
-
ms.date: 03/06/2024
6
+
ms.date: 09/17/2024
7
7
ms.topic: conceptual
8
8
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.
Copy file name to clipboardExpand all lines: subscriptions/faq/admin/benefits/includes/activate-subscriptions.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,11 @@ comment: As of August 2023 this include is used to render marketing FAQ content
5
5
ms.faqid: group2_1
6
6
ms.topic: include
7
7
ms.assetid: 1530ca0a-f23f-44f1-9bde-792ea1265085
8
-
author: evanwindom
8
+
author: joseb-rdc
9
9
ms.author: amast
10
-
ms.date: 08/08/2023
10
+
ms.date: 09/18/2024
11
11
---
12
12
13
13
## How do my end users activate their Visual Studio subscription?
14
14
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.
description: Understand what happens when a Visual Studio subscription expires, including changes to available downloads, product keys, Azure credits, and other benefits.
9
9
---
10
10
11
11
# What happens when your subscription expires
12
12
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.
14
14
15
15
If you would like to purchase a new subscription, you can explore purchasing options on our [pricing page](https://visualstudio.microsoft.com/vs/pricing).
16
16
17
17
## Downloads
18
18
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.
20
20
21
21
## Product keys
22
22
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.
24
24
> [!IMPORTANT]
25
25
> 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.
26
26
27
27
## Benefits
28
28
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.
30
30
31
31
### Visual Studio IDE
32
32
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.
34
34
35
35
### Azure DevOps
36
36
37
37
Azure DevOps acquired through a Visual Studio subscription is unavailable.
38
38
39
39
### Azure credits
40
40
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).
42
42
43
43
### Other benefits
44
44
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.
46
46
47
47
## Resources
48
48
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).
50
50
51
51
## See also
52
52
@@ -57,6 +57,6 @@ For assistance with sales, subscriptions, accounts and billing for Visual Studio
57
57
58
58
## Next steps
59
59
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.
62
62
+ 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