


Select your Configuration and hit Edit Configurations.Obviously, you could run dotnet watch run directly using the terminal, but it’d be nice to have this as a launch configuration option right in Rider that is only a CTRL + F5 away. How do I integrate dotnet watch and Rider?Īlright, now for the part you came here for. I can use Rider on Windows or macOS (which I bounce between for personal and professional work), and a lot of features are included for $150 that I would have to spend thousands to get in Visual Studio Enterprise (such as Continuous Testing). With Rider, I get all the benefits of Resharper and it’s fast. I put up with it due to all the extra functionality Resharper provided. I’ve been a user of Resharper for years, but Resharper and Visual Studio never seemed to play very nice together and ended up slowing down Visual Studio significantly. It is my go-to IDE now, due to all of its productivity enhancements over the base install of Visual Studio. NET IDE from the people at JetBrains (who make many developer productivity tools such as Resharper for Visual Studio, TeamCity, IntelliJ, and more). NET 5+ is that it will automatically launch a browser and auto-refresh the browser after it detects a change and finishes compiling (if your application has a UI). This obviously speeds up your workflow so you don’t have to restart your server or your tests manually.Ī new feature of dotnet watch run in. The most common uses for this are using it to automatically re-run your application (using dotnet watch run) or automatically re-run your tests (using dotnet watch test) after a file change.

Dotnet watch is a way to immediately trigger a dotnet command when a file changes.
