Showing results for Debugging - .NET Blog

Dec 9, 2020
Post comments count13
Post likes count1

Producing Packages with Source Link

Claire Novotny
Claire Novotny

Learn how to add Source Link to your packages, to make your users more productive while debugging.

.NET.NET CoreDebugging
Sep 17, 2020
Post comments count16
Post likes count0

Debug Your .NET Core Apps in WSL 2 with Visual Studio

Nathan Carlson
Nathan Carlson

The .NET Core Debugging with WSL 2 – Preview extension lets run and debug your .NET Core apps in WSL 2 from Visual Studio.

Visual StudioASP.NET.NET Core
Jan 25, 2019
Post comments count0
Post likes count0

Debugging .NET Apps with Time Travel Debugging (TTD)

Felipe Pessoto
Felipe Pessoto

When you are debugging an application, there are many tools and techniques you can use, like logs, memory dumps and Event Tracing for Windows (ETW). In this post, we will talk about Time Travel Debugging, a tool used by Microsoft Support and product teams and more advanced users, but I encourage everyone to try this approach when diagnosing hard to...

.NET Framework
Sep 17, 2018
Post comments count0
Post likes count0

The future of ASP.NET SignalR

Andrew Stanton-Nurse
Andrew Stanton-Nurse

In ASP.NET Core 2.1, we brought SignalR into the ASP.NET Core family. Many of our users have asked what this means for the previous version of SignalR: ASP.NET SignalR. As a reminder, ASP.NET SignalR is represented by the NuGet package and runs on applications using .NET Framework and System.Web. ASP.NET Core SignalR is part of the ASP.NET Core p...

ASP.NETSignalR
Jun 29, 2018
Post comments count0
Post likes count0

Changes to script debugging in Visual Studio 15.7

Angelos Petropoulos
Angelos Petropoulos

We’re always looking for ways to make developing with Visual Studio faster.  One of the tasks developers do many times a day is launching debugging sessions.  We identified that script debugging added about 1.5s per F5, but only about 15.5% of people actively debugged script using Visual Studio. Based on the above, in Visual Studio 15.7 we made th...

ASP.NETASP.NET Core
Nov 21, 2016
Post comments count3
Post likes count0

Client-side debugging of ASP.NET projects in Google Chrome

Mads Kristensen
Mads Kristensen

Updated 2017/1/3 - Setting to control script debugging added. See below. Visual Studio 2017 RC now supports client-side debugging of both JavaScript and TypeScript in Google Chrome. For years, it has been possible to debug both the backend .NET code and the client-side JavaScript code running in Internet Explorer at the same time. Unfortunately, th...

ASP.NET
Mar 21, 2016
Post comments count0
Post likes count0

Remote Debug ASP.NET Core RC1 on Azure App Service

Brady Gaster
Brady Gaster

ASP.NET developers who deploy their code to Azure App Service have remote debugging features available from the Visual Studio Server and Cloud Explorer windows. ASP.NET 4x projects can be debugged live in App Service by simply right-clicking your Web, Mobile, or API Apps in Cloud Explorer and clicking the “Attach Debugger” action. Under the hood, w...

ASP.NETASP.NET Core
Feb 6, 2015
Post comments count0
Post likes count0

Debugging ASP.NET 5 framework code using Visual Studio 2015

Victor Hurdugaci
Victor Hurdugaci

In the previous versions of ASP.NET it was possible to debug certain parts of the framework stack but setting up the development environment and compiling all the binaries was not the easiest task. ASP.NET 5 changes that and makes debugging framework code as easy as debugging your own application. This article shows how to debug into the ASP.NET 5 ...

ASP.NET
Jul 11, 2013
Post comments count0
Post likes count0

“Enable Edit and Continue” debugging option is now on by default for new web applications in VS2013 preview

Xinyang Qiu
Xinyang Qiu

In VS2010 and VS2012, the edit and continue option is disabled by default when creating a new web application project. In VS2013 preview, we turned it on by default. You can find this option on the Web tab in the web project’s properties window.   With “Enable Edit and Continue” on, the VS debugger starts your web applicat...

ASP.NET