Showing results for Developer Productivity - Visual Studio Blog

Jan 7, 2025
8

Benchmarking with Visual Studio Profiler

Nik Karpinsky
Nik Karpinsky

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 pr...

Debugging and DiagnosticsDeveloper ProductivityVisual Studio Profiler
Dec 4, 2024
8

How Inline Return Values Simplify Debugging in Visual Studio 2022

Harshada Hole
Harshada Hole

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 extra ...

Debugging and DiagnosticsGitHub CopilotDeveloper Productivity
Dec 2, 2024
2

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

Harshada Hole
Harshada Hole

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. ...

Debugging and DiagnosticsGitHub CopilotDeveloper Productivity
Oct 2, 2024
8

Discover Hidden Insights with Profiler’s External Code Decompilation

Harshada Hole
Harshada Hole

Have you ever wondered what's happening under the hood of your .NET application? Do you want to quickly and easily identify and fix performance bottlenecks? If so, Visual Studio has the perfect tool for you: the profiler. The profiler allows you to analyze your code's performance, pinpoint hot paths, detect memory leaks, address thread contentio...

PerformanceDeveloper ProductivityVisual Studio Profiler
Sep 25, 2024
13

Organize Your Breakpoints like a pro

Harshada Hole
Harshada Hole

Do you feel overwhelmed by the sheer number of breakpoints in your Visual Studio project? Wish you could categorize and toggle them on and off with ease? The new breakpoint group feature in Visual Studio 2022 is here to transform your debugging experience. Breakpoint groups allow you to create custom collections of breakpoints and apply vari...

Debugging and DiagnosticsDeveloper ProductivityBreakpoints
Feb 23, 2024
1
3

A Year of C++ Game Development Improvements in Visual Studio

Jason Chlus David Li
Jason,
David

Game development is evolving rapidly and keeping up with the latest trends is crucial. I’m thrilled that David Li took the time to highlight all the improvements added to Visual Studio for game developers during 2023. Check out his blog here.  The Unreal Engine integrations are where my eyes jumped to first. There is now an Unreal Engine log vie...

Game DevelopmentDeveloper ProductivityUnreal Engine
Feb 12, 2024
1
4

A Look Back: Visual Studio’s Profiling Tool Advancements in 2023

Harshada Hole
Harshada Hole

In retrospect, the past year our team was on a mission to enhance Profiling tools, making them more efficient and user-friendly. We improved instrumentation and our .NET counter tool, broadened platform support, seamlessly integrated unit test profiling, and boosted overall performance. Your valuable feedback via Developer Community was crucial in ...

Visual Studio 2022Developer ProductivityProfiling
Jan 31, 2024
4
5

In the Debugger’s Spotlight: A Year in Review

Harshada Hole
Harshada Hole

Reflecting on the past year's journey, our team was on a mission to enhance debugging tools, ensuring they became more efficient and user-friendly. We dedicated our efforts to boosting inner-loop productivity, making external source debugging more seamless, improving overall performance, and optimizing memory analysis. And, of course, we were eager...

Debugging and DiagnosticsVisual Studio 2022Developer Productivity
Sep 25, 2023
11
5

A unit of profiling makes the allocations go away

Nik Karpinsky
Nik Karpinsky

In Visual Studio 17.8 Preview 2 we have updated unit test profiling, allowing you to use any of the available tools in the performance profiler – not just the instrumentation tool. With this change, it’s easy to quickly profile small units of work in isolation, make changes, and then remeasure and validate the impact of the change. Assuming you hav...

Debugging and DiagnosticsVisual Studio 2022Developer Productivity
Sep 6, 2023
5
6

Elevating Debugging with Auto-decompilation and External Sources

Harshada Hole
Harshada Hole

Visual Studio has been supporting external sources debugging and decompilation for some time now. However, with the release of Visual Studio 17.7, the debugger took a significant leap forward by introducing Auto-decompilation for .NET libraries making the external code debugging in Visual Studio much more streamlined and effortless. Its integrated ...

Debugging and DiagnosticsVisual Studio 2022Developer Productivity