Programming

Our Favorite NEW Visual Studio Features of 2024

Last year, the Visual Studio team delivered many new developer-focused improvements and AI integrations, many of which came directly from your feedback on Developer Community. In this post, we highlight the team’s favorite features from 2024 that boost productivity, streamline workflows, and enhance your coding experience. Let’s dive in! Image Hover Preview: See your images […]
The post Our Favorite NEW Visual Studio Features of 2024 appeared first on Visual Studio Blog.
Feed

Join us at VS Live! 2025 Las Vegas

Join Your Favorite Speakers at VS Live! Las Vegas With the new year here, many developers are looking for the best ways to stay ahead in a rapidly evolving tech landscape. That’s why Visual Studio Live! Las Vegas, March 10-14, 2025, is a must-attend event! Stay ahead of the curve with the latest enhancements in […]
The post Join us at VS Live! 2025 Las Vegas appeared first on Visual Studio Blog.
Feed

Enhanced Change Signature in C++

Change Signature allows you to modify a function’s parameters, including reordering, adding, removing, or altering them across various locations. Previously, the Change Signature feature in Visual Studio involved multiple clicks and nested pop-up windows. In Visual Studio 2022 version 17.12, we’ve reduced the number of clicks and eliminated these nested steps to streamline the process. […]
The post Enhanced Change Signature in C++ appeared first on Visual Studio Blog.
Feed

Benchmarking with Visual Studio Profiler

In Visual Studio 17.13 Preview we have released our updated BenchmarkDotNet diagnosers, allowing you to use more of the tools in the performance profiler to analyze benchmarks. With this change it is super quick to dig into CPU usage and allocations of benchmarks making the measure, change, measure cycle quick and efficient. Benchmarking a real […]
The post Benchmarking with Visual Studio Profiler appeared first on Visual Studio Blog.
Feed

Unlocking insights with Meter Histogram in the profiler

Are you struggling with performance bottlenecks in your applications? Look no further! Visual Studio 2022 introduces the Meter Histogram feature in its performance profiling suite, providing you with the tools to analyze and visualize histogram data like never before. The Meter Histogram is a key enhancement to Visual Studio’s performance profiling suite. This feature enables […]
The post Unlocking insights with Meter Histogram in the profiler appeared first on Visual Studio Blog.
Feed

Dock the Code Search window in Visual Studio 2022

Ever felt frustrated with the search window cluttering your workspace? The latest feature in Visual Studio 2022 gives you more control over the behavior of the Code and Feature Search window, making your search experience smoother and more efficient. Some users have shared that the search window feels intrusive, interrupting your work by appearing mid-screen […]
The post Dock the Code Search window in Visual Studio 2022 appeared first on Visual Studio Blog.
Feed

Go to line anywhere with Code Search for Visual Studio 2022

Finding the exact line of code where an issue is occurring can be like searching for a needle in a haystack. Whether you are debugging an error on line 43 of a file or diving into a specific section of code, you can efficiently jump to the right places with this newest addition to Code […]
The post Go to line anywhere with Code Search for Visual Studio 2022 appeared first on Visual Studio Blog.
Feed

Connect securely to your Azure resources

Visual Studio 2022’s Connected Services features are being updated to help you start secure. In the past, for example with Azure Storage, we’d inject the entire connection string into your configuration. With this update, we’ve removed the secrets from the UX – and from what we save to configuration – altogether. This means your code […]
The post Connect securely to your Azure resources appeared first on Visual Studio Blog.
Feed

Security updates to Azure publishing from Visual Studio

Visual Studio 2022 introduces a new feature to improve the security of publishing applications to Azure App Service. This feature is designed to disable Basic Authentication and enable integrated security for a more secure publishing process. Basic Authentication has been identified as a less secure method for managing app deployments. Visual Studio 2022 addresses this […]
The post Security updates to Azure publishing from Visual Studio appeared first on Visual Studio Blog.
Feed

GitHub Copilot Free is here in Visual Studio

If you haven’t already heard, GitHub just announced Copilot Free! And great news: you can already start using Copilot Free right now in Visual Studio. It’s available now, and we’re putting the finishing touches on a more streamlined experience in January. We’re excited to bring these benefits to the entire Visual Studio family. With Copilot […]
The post GitHub Copilot Free is here in Visual Studio appeared first on Visual Studio Blog.
Feed

Refresh your Find results

Are you tired of having to repeatedly launch the Find window in Visual Studio to update your search results? Whether you’ve just refactored some code or pulled recent changes, having to redo a search to get updated results is no longer necessary. With the new refresh option, you can now update your Find results without […]
The post Refresh your Find results appeared first on Visual Studio Blog.
Feed

Create internal GitHub repos for your team

Visual Studio 2022 now includes support for creating internal repositories for GitHub organizations. This feature allows developers to work within their GitHub organization’s guidelines within the Visual Studio environment more effectively. Managing repositories involves configuring varying levels of visibility and permissions. Visual Studio 2022’s new feature aims to smooth this process by providing support for […]
The post Create internal GitHub repos for your team appeared first on Visual Studio Blog.
Feed

Boost your Git confidence with the new file rename notification

Have you ever renamed a file in Solution Explorer and wondered if Git is tracking your changes correctly? You’re not alone. Many developers have found this process confusing and worry whether their changes are being properly staged in Git. But worry no more – there’s a solution! When you rename files in Solution Explorer, Visual […]
The post Boost your Git confidence with the new file rename notification appeared first on Visual Studio Blog.
Feed

New Boards Hub Rollout Expectations

Although the process may seem slow, we are steadily progressing toward rolling out the New Boards Hub to all customers. Our plan is to deprecate the old Boards experience for all Azure DevOps service users by the end Q1 2025. The rollout is advancing on two fronts. First, we are setting the New Boards Hub […]
The post New Boards Hub Rollout Expectations appeared first on Azure DevOps Blog.
Feed

Effortless publishing with Azure Functions Flex Consumption

Struggling with complex deployment processes for your serverless applications? Visual Studio 2022 introduces a seamless solution with the new Azure Functions Flex Consumption hosting plan, now generally available. Imagine a world where deploying your serverless applications to a hosting plan that supports fast scaling and VNet is as simple as a right-click. With the Azure […]
The post Effortless publishing with Azure Functions Flex Consumption appeared first on Visual Studio Blog.
Feed

Effortless publishing to Azure WebJobs on Linux

Are you tired of the cumbersome process involved in publishing your .NET console applications to Azure WebJobs on Linux? For developers yearning for a seamless and efficient method to deploy their applications, Visual Studio 2022 introduces a much-anticipated solution. Visual Studio 2022 now supports right-click publishing to Azure WebJobs on Linux, making the deployment process […]
The post Effortless publishing to Azure WebJobs on Linux appeared first on Visual Studio Blog.
Feed

Keep working with non-blocking Code Cleanup

Are you tired of waiting for Code Cleanup to finish every time you save your work? Visual Studio 2022 will no longer lock up and get in the way of your tasks as it’s cleaning up the code under the covers. Every developer knows the importance of maintaining clean code. However, the traditional Code Cleanup […]
The post Keep working with non-blocking Code Cleanup appeared first on Visual Studio Blog.
Feed

Introducing Code Referencing for GitHub Copilot Chat in Visual Studio

Are you tired of the uncertainty that comes with using code suggestions from AI tools? We’ve got exciting news for you! Visual Studio 2022 now includes code referencing in GitHub Copilot, ensuring greater transparency and control for developers. We are thrilled to announce that code referencing is now available in GitHub Copilot Chat within Visual […]
The post Introducing Code Referencing for GitHub Copilot Chat in Visual Studio appeared first on Visual Studio Blog.
Feed

How Inline Return Values Simplify Debugging in Visual Studio 2022

Have you ever found yourself creating temporary variables just to inspect return values from functions? It’s a small task that can quickly become tedious, breaking your rhythm and cluttering up your code. Visual Studio 2022 introduces a smarter way to handle this with “Inline Return Values,” allowing you to stay focused on coding without the […]
The post How Inline Return Values Simplify Debugging in Visual Studio 2022 appeared first on Visual Studio Blog.
Feed

Microsoft DevLabs Extensions

The Microsoft DevLabs publisher was created as a hub for internal teams at Microsoft to channel their passion for Azure DevOps into experimental extensions. These extensions helped address product gaps and fostered innovation, ultimately benefiting Azure DevOps customers via the public marketplace. The challenge Over time, as the original creators of these extensions moved on […]
The post Microsoft DevLabs Extensions appeared first on Azure DevOps Blog.
Feed

Introducing the Copy Git Permalink Feature in Visual Studio 17.12

We are excited to announce the release of the Copy Git Permalink feature in Visual Studio 17.12. This new functionality streamlines the process of sharing code references, enhancing collaboration and ensuring that critical context is preserved. Effortless Code Sharing If you’ve found yourself needing to share code snippets with colleagues, you know the challenges of […]
The post Introducing the Copy Git Permalink Feature in Visual Studio 17.12 appeared first on Visual Studio Blog.
Feed

AI-Powered Insights: Streamlining Variable Analysis with GitHub Copilot in Visual Studio

Tired of spending countless hours troubleshooting errors and unexpected values in your code? Visual Studio 2022 introduces GitHub Copilot Variable Analysis. This powerful tool makes inspecting and analyzing variables from Locals, Autos, watch windows and DataTips effortless, helping you solve issues faster and cutting down on time and frustration. Enhanced Debugging Experience Debugging can often […]
The post AI-Powered Insights: Streamlining Variable Analysis with GitHub Copilot in Visual Studio appeared first on Visual Studio Blog.
Feed

Transform your debugging experience with GitHub Copilot

Are your unit tests failing, and do you want to debug them more effectively? The latest feature in Visual Studio 2022, powered by GitHub Copilot, has the perfect solution for you. Introducing the Debug with Copilot button in Test Explorer, this feature takes the hassle out of debugging failed tests and gets you closer to […]
The post Transform your debugging experience with GitHub Copilot appeared first on Visual Studio Blog.
Feed

Updates for C++ developers in Visual Studio 2022 17.12

Visual Studio 17.12 is here and comes with a host of new features for C++ developers. We’ve made improvements across our toolchain, C++ Build Insights, Unreal Engine support, and more. This post gives a quick overview of what’s available; for all the details, see What’s New for C++ Developers in Visual Studio 2022 17.12 on […]
The post Updates for C++ developers in Visual Studio 2022 17.12 appeared first on Visual Studio Blog.
Feed

Getting the most out of Azure DevOps and GitHub

Microsoft has two very successful DevSecOps products in the market – GitHub and Azure DevOps. Azure DevOps has a large enterprise customer base that loves the highly customizable enterprise-focused planning and tracking capabilities in Azure Boards, the robust continuous delivery capabilities in Azure Pipelines, the manual and exploratory testing capabilities in Azure Test Plans, and […]
The post Getting the most out of Azure DevOps and GitHub appeared first on Azure DevOps Blog.
Feed

Announcing the General Availability of Managed DevOps Pools (MDP) for Azure DevOps

We are thrilled to announce that Managed DevOps Pools for Azure DevOps is now generally available! This milestone marks a significant advancement in our mission to improve developer productivity in the CI/CD loop, reduce your cloud bill for ES infra and to reduce the toil associated with creating and maintaining custom CI/CD infrastructure for your […]
The post Announcing the General Availability of Managed DevOps Pools (MDP) for Azure DevOps appeared first on Azure DevOps Blog.
Feed

November Patches for Azure DevOps Server

Today we are releasing patches that impact our self-hosted product, Azure DevOps Server. We strongly encourage and recommend that all customers use the latest, most secure release of Azure DevOps Server. You can download the latest version of the product, Azure DevOps Server 2022.2 from the Azure DevOps Server download page. The following versions of […]
The post November Patches for Azure DevOps Server appeared first on Azure DevOps Blog.
Feed

Better GitHub Copilot completions for C#

We’re excited to announce a significant enhancement to GitHub Copilot that elevates your C# coding experience. Introducing the new update: GitHub Copilot code completions now provide more accurate and relevant autocomplete suggestions by incorporating additional C# context. Previously, GitHub Copilot generated suggestions based on the content of your currently active file and any other open […]
The post Better GitHub Copilot completions for C# appeared first on Visual Studio Blog.
Feed

Introducing a new, more conversational way to chat with GitHub Copilot

In the fast-evolving world of software development, intuitive AI-driven interactions are becoming essential to unlocking new levels of productivity. Today, we’re excited to share our latest innovation – a guided chat experience within GitHub Copilot that reshapes how developers interact with AI. This guided chat experience is available in Visual Studio 2022 17.12 Preview 3 […]
The post Introducing a new, more conversational way to chat with GitHub Copilot appeared first on Visual Studio Blog.
Feed

Learn how to create a Client-Server Application in under 45 Minutes in the new Season of AI

What if you could create a robust, versatile client-server application in under 45 minutes? With Visual Studio and GitHub Copilot, this is not only possible but also efficient and enjoyable. This Season of AI, we show you how to use developer tools like GitHub Copilot to create apps from scratch. This season of AI occurs […]
The post Learn how to create a Client-Server Application in under 45 Minutes in the new Season of AI appeared first on Visual Studio Blog.
Feed

The making of Bring Back Plus/Minus

A lesson about the software forensics process involved in developing the Bring Back Plus/Minus extension, which brings back the plus/minus symbols to the editor outlining feature in Visual Studio 2022. While I did have the advantage of being able to look at the Visual Studio source code, I could have figured this out just as well without […]
The post The making of Bring Back Plus/Minus appeared first on Visual Studio Blog.
Feed

Unreal Engine Toolbar in Visual Studio

In Visual Studio 2022 version 17.11, we’ve added a new Unreal Engine toolbar to Visual Studio. The Unreal Engine toolbar is a new feature that provides quick access to common Unreal Engine tasks. You can find the toolbar at the top of your code window when you have an Unreal Engine project loaded. The toolbar […]
The post Unreal Engine Toolbar in Visual Studio appeared first on Visual Studio Blog.
Feed

Create Unreal Engine modules faster

Unreal Engine modules help keep your code organized and modular. However, creating modules can be a tedious and error-prone process that involves manually editing configuration files and adding boilerplate code. Visual Studio 2022 version 17.11 comes with a new dialog to help with this process. With the new Add Module dialog, you can quickly add […]
The post Create Unreal Engine modules faster appeared first on Visual Studio Blog.
Feed

No new Azure DevOps OAuth apps beginning February 2025

Starting February 3, 2025, we will no longer accept new registrations of Azure DevOps OAuth apps. This is the first step we’ll be taking towards our longer-term vision of sunsetting the Azure DevOps OAuth platform. Moving forward, we’ll be publicly advocating all developers that are building applications on top of Azure DevOps REST APIs to […]
The post No new Azure DevOps OAuth apps beginning February 2025 appeared first on Azure DevOps Blog.
Feed

Easily add Unreal Engine classes to your C++ project

Visual Studio 2022 v17.11 introduces a new Add Unreal Engine Class dialog that lets you easily add common Unreal Engine classes to your project. You can also choose to which module to add your class, so you can keep your code organized and modular. To use this feature, you need to have an Unreal Engine […]
The post Easily add Unreal Engine classes to your C++ project appeared first on Visual Studio Blog.
Feed

Using Entra profile information in Azure DevOps

We’re excited to announce the ability to use Entra profile information in Azure DevOps. This has been a long-standing feature request from the community (ex. profile, picture, email, and name). Beyond the convenience of configuring profile information in one place and ensuring the accuracy of personal information, using Entra profile information in Azure DevOps provides […]
The post Using Entra profile information in Azure DevOps appeared first on Azure DevOps Blog.
Feed

Upgrade Your Windows Forms .NET Projects to the Latest .NET Version for Enhanced Security

Each release of .NET introduces a host of new features and bug fixes that enhance both performance and security. To leverage these benefits both service and desktop application developers must upgrade their applications to the latest .NET versions. Just like other developers wanting to take advantage of the latest .NET enhancements, we are updating our […]
The post Upgrade Your Windows Forms .NET Projects to the Latest .NET Version for Enhanced Security appeared first on Visual Studio Blog.
Feed