DEV Community

Cover image for 17+ Must-Have .NET Developer Tools - The Essential List
Thomas Ardal
Thomas Ardal

Posted on • Originally published at blog.elmah.io

17+ Must-Have .NET Developer Tools - The Essential List

This post is about most of the tools I use as a .NET developer. As always, let me know if you think something is missing. I'm always on the lookout for new tools to help me be a better developer. Let's get started with my list of must have .NET developer tools (in random order).


Chocolatey

Think apt-get for Windows or applications in NuGet. Chocolatey lets you install all sorts of Windows tools from the command line. I personally don't dislike msi files, but sometimes it's just easier to install missing tools from the command line. Chocolatey works great for creating an Install.ps1 script for your team too. Installing everything on a fresh PC saves you a bunch of time and ensures everyone is using the same versions.

Chokolatey


Visual Studio and Visual Studio Code

You won't get much street credit when mentioning Visual Studio, but it is still the most advanced development environment for .NET out there. Code is quickly catching up, though. I do all of my primary development in VS and use Code for quickly previewing files and non-C# development.

As an alternative to Visual Studio, you might want to check out Rider. It is developed by the guys at JetBrains and has all of the nice features of ReSharper built in.

Visual Studio


LINQPad

If you ever started Visual Studio and created a new console app, just to try out a few lines of code, you need LINQPad. Being named *LINQ*Pad, it does actually provide some features to try out LINQ code against a database. I use it exclusively for executing one or more lines of C#.

Like mentioned in the post about extensions for Visual Studio Code, Code Runner for Code is a good alternative to LINQPad.

LINQPad


ReSharper and friends

Let's face it. Visual Studio with R# is just better then without. I'm continuously trying to convince myself not to spend the bucks on R# but end up coming back. It's pretty expensive, but once you have it, you won't go back. I would pay just for the improved unit test runner available in R# (looking at you and your Test Explorer window, Microsoft).

Alongside R#, JetBrains develops a great set of tools. My favourites are dotPeek (after Redgate bought and commercialized .NET Reflector), dotTrace and dotCover.

ReSharper


JSON Formatter

I know most IDEs are able to format JSON files. But I often find myself Googling json formatter and clicking on the first result. It's usually JSON Formatter & Validator by Curious Concept. The service quickly validates, formats and presents a nicely structured JSON output.

JSON Formatter


Service Bus Explorer

If you are using Azure Service Bus, the open source tool Service Bus Explorer by Paolo Salvatori, is a great tool. It might not have the slickest UI (I cannot design Windows UI either), but it's great for browsing queues/topics, dealing with dead-letter queues and much more.

Service Bus Explorer


Azure Storage Explorer

Another essential Azure tool is Azure Storage Explorer. Browse blob, queue, table and file storage directly in the app. I often use the Azure portal for quick browsing blobs, but when needing to look inside the blobs, upload new content, etc., Storage Explorer is superior in most ways. The tool is developed by Microsoft and is available for all major operation systems.

Storage Explorer

ScreenToGif

The expression "A picture is worth a thousand words" dates back to 1911. If animated gifs had been invented back then, the expression would have been "A picture is worth a thousand words and an animated gif even more". I use animated gifs all the time and yes I know about more modern formats like WebP, WebM, and similar, but gifs just work anywhere. ScreenToGif is a nice little open source project developed by Nicke Manarin. It places itself on top of the content to record, thus sending a quick animation to a co-worker or producing content for this blog suddenly become a piece of cake.

ScreenToGif


Notepad++

In the never-ending line of editors, one of the bests is (IMO) Notepad++. Notepad++ supports syntax highlighting for a large range of programming languages and there's a great ecosystem around creating plugins. I might switch entirely to Visual Studio Code at some point, but right now, Notepad++ is still launched multiple times a day on my machine.

Notepad++


Postman

Postman is the best test client for executing HTTP requests. Period! The tool moved from being a Chrome extension to a self-hosted tool some years back. Postman matured into an awesome tool with support for all sorts of authentication, team support, and much more.

Postman


PNGGauntlet

Maybe not that related to .NET, but every mobile, Windows and web app contains PNG images these day. PNGGauntlet lets you create the smallest possible sized PNGs with no loss in quality. What's not to like? What I really like about PNGGauntlet, compared to the Visual Studio extensions out there, is that you can optimize images in batches.

PNGGauntlet


GitHub Desktop

I started using Git, back when there were no good UI for Windows. Rather than talking about how old I am, let me introduce you to a good Git UI for Windows: GitHub Desktop. Unlike what you may think, GitHub Desktop works with any Git repository and not just the ones cloned from GitHub. I mostly use the command line or Visual Studio for my Git needs, but GitHub Desktop has some nice features and visualizations for sure.

GitHub Desktop


PowerShell

Remember the days when you wrote all your scripts in bat-files? With PowerShell, all of our scripting needs have been covered. You may dislike the slightly weird syntax, but everything supports PowerShell these days. I use PowerShell for everything that needs to be scripted on elmah.io.

Bonus info: I'm surprised how many people don't know about the built-in PowerShell editor - Windows PowerShell ISE. Right click any ps1 file and hit Edit.

PowerShell


PoshGit

Now that GitHub Desktop no longer seems to install its Git Shell, you can install the same thing manually (easiest using Chocolatey). PoshGit is a PowerShell module that integrates Git commands into PS. What's really nice about this module is, that you will get an improved summary of changes displayed at all times.

PoshGit


NDepend

NDepend is the best code analyzer available (IMO). I haven't used the tool these last few years, but I'm very much looking into the changes being added to the product. NDepend now runs entirely inside Visual Studio (previously a Windows application). elmah.io customers get 10% discount on NDepend.

NDepend


Fiddler

For debugging communication between services, Fiddler by Telerik is an invaluable tool. Fiddler is a proxy that sits in between services and intercepts all of the communication going on. I cannot count the number of times Fiddler has revealed some essential details, that in the end helped me debug a problem.

Fiddler


NuGet Package Explorer

While Visual Studio comes with a pretty good experience when it comes to browsing NuGet packages, NuGet Package Explorer is a great addition. You can quickly browse a previously unknown feed, download NuGet packages to the disk and even create packages manually.

NuGet Package Explorer


Regex101

regex101 is a great online tool for writing and debugging regular expressions. I usually try to stay as far away from regex as possible, but sometimes you just need to write some good old cryptic code that no-one will ever be able to understand in the future :) I've used Expresso for Windows previously, but regex101 provides a similar yet simpler UI.

Regex101


JSFiddle

Being a .NET developer without some JavaScript skills, is hard these days. Both Visual Studio and Visual Studio Code provides great experiences when it comes to writing JavaScript. Much like using LINQPad for small C# scripts, it's just easier to spin up JSFiddle when doing some JavaScript experiments. Fiddles can be shared, which I'm using all the time to communicate with our frontend guy.

JSFiddle


MyGet

We are currently using the built-in NuGet Server in Visual Studio Team Services. But MyGet is a great alternative that I have used in the past. Using MyGet, you can create public (or private) NuGet, npm,Bower and other types of feeds. It's free for public feeds and very reasonably priced for private. Did I mention that there's a 15% MyGet discount as an elmah.io customer? ;)

MyGet


Azure DevOps

I have been using all sorts of source control systems (GitHub, GitLab, Bitbucket, etc.), issue trackers (Trac, Jira, YouTrack, etc.) and build servers (CruiseControl.NET, TeamCity, etc.). I must admit that Microsoft Team Foundation Server and even the first versions of Visual Studio Online (now Azure DevOps) always seemed like a joke to me. But in the recent years, Azure DevOps simply replaced every of the mentioned tools. It took some years, but today it is AWESOME!

VSTS

Would your users appreciate fewer errors?

elmah.io is the easy error logging and uptime monitoring service for .NET. Take back control of your errors with support for all .NET web and logging frameworks.

➡️ Error Monitoring for .NET Web Applications ⬅️

This article first appeared on the elmah.io blog at https://blog.elmah.io/debugging-system-net-webexception-the-remote-name-could-not-be-resolved/

Top comments (6)

Collapse
 
devingoble profile image
Devin Goble

If you're doing command line stuff in Windows, the Windows Terminal is great. Scott Hanselman has a good tutorial on making it look nice. hanselman.com/blog/HowToMakeAPrett...

Collapse
 
thomasardal profile image
Thomas Ardal

Thank you for the hint. It's one of those tools that I have been wanting to check out since they launched it. And when I finally get around to do so, I just know I'll regret not doing it sooner 😂

Collapse
 
mraarif profile image
Aarif

Resharper is one of the top reasons for me loving the .NET ecosystem.
A nicely curated list.

Collapse
 
gotshoo profile image
Chris Scheufele

Awesome list! Use a lot of these tools already. Making note of a couple more. Git Extensions is an awesome GUI for Git repositories.

Collapse
 
vip3rousmango profile image
Al Romano

Great list! Never knew about PoshGit or PNG Gauntlet. Will have to check these out!

Collapse
 
danarj profile image
Danar

Too many useful tools my personal
Visual Studio
Postman
Resharper
Notepad++