Showing results for Profiling - Visual Studio Blog

Mar 5, 2025
Post comments count0
Post likes count4

New Debugging and Profiling Features in Visual Studio (v17.13)

Harshada Hole
Harshada Hole

The latest Visual Studio update (v17.13) brings a strong set of debugging and profiling features designed to speed up troubleshooting, making it more efficient. With AI-driven features in this release, variable analysis and data inspection are smarter and more intuitive, and problems are easier to identify and debug. Profiling tool improvements als...

Debugging and DiagnosticsGitHub CopilotProfiling
Sep 30, 2024
Post comments count0
Post likes count1

Effortless Instrumentation profiling with Persistent Target Selection

Harshada Hole
Harshada Hole

Ever wished to assess your code's performance without repeatedly choosing the target process or executable for each instrumentation profiling session? If so, you're among many developers who find this task cumbersome and prone to errors, especially when profiling the same target repeatedly. We understand your frustration and have a solution: Vis...

ProfilingVisual Studio Profiler
Feb 12, 2024
Post comments count1
Post likes count4

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
Apr 13, 2023
Post comments count13
Post likes count11

Improving Visual Studio performance with the new Instrumentation Tool

Nik Karpinsky
Nik Karpinsky

Summary With the release of Visual Studio 2022 version 17.6 we are shipping our new and improved Instrumentation Tool in the Performance Profiler. Unlike the CPU Usage tool, the Instrumentation tool gives exact timing and call counts which can be super useful in spotting blocked time and average function time. To show off the tool let’s use it to ...

Debugging and DiagnosticsVisual Studio 2022Developer Productivity
Aug 11, 2022
Post comments count11
Post likes count8

Choosing a .NET Memory Profiler in Visual Studio – part 1

Clément Habinshuti
Clément Habinshuti

Summary Visual Studio provides two great tools for analyzing and diagnosing memory issues in .NET applications: the Memory Usage profiler and .NET Object Allocation Tracking tool. While both tools are useful, it may not be obvious for new user to know which one to use when. This article aims to clarify what each tool is good for and how to use the...

Visual StudioDebugging and DiagnosticsProfiling
Jun 9, 2022
Post comments count5
Post likes count3

New Profiler feature in Visual Studio

Misty Hays
Misty Hays

Introducing the new File I/O tool  We just launched a new profiling tool in Visual Studio 17.2 that helps you understand how you can optimize your File I/O operations to improve performance in your apps. If you’re trying to investigate and diagnose slow loading times, the new File IO tool can help you understand how the I/O operations impact your ...

.NETPerformanceDiagnostics
Mar 2, 2021
Post comments count14
Post likes count0

New Dynamic Instrumentation Profiling for .NET

Sagar Shetty
Sagar Shetty

With the release of version 16.9 of Visual Studio, instrumentation profiling in Visual Studio just got better. Introducing our new dynamic instrumentation tool. This tool shows the exact number of times your functions are called and is faster than our previous static instrumentation tool. It also supports .NET Core instrumentation without...

Visual StudioDebugging and DiagnosticsDiagnostics
Jul 27, 2020
Post comments count0
Post likes count1

Database Profiling with Visual Studio

Esteban Herrera
Esteban Herrera

Examine when database queries were executed and measure how long the take using Visual Studio's Performance Profiler.

SQLDiagnosticsProfiling