Showing results for Debugging - .NET Blog

Dec 9, 2020
13
1

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
Jan 25, 2019
0
0

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

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

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
3
0

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

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
0

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