Start Debugging

ReSharper Lands in VS Code and Cursor, Free for Non-Commercial Use

JetBrains shipped ReSharper as a VS Code extension with full C# analysis, refactoring, and unit testing. It works in Cursor and Google Antigravity too, and costs nothing for OSS and learning.

For years, ReSharper meant one thing: a Visual Studio extension. If you wanted JetBrains-grade C# analysis outside of Visual Studio, Rider was the answer. That changed on March 5, 2026, when JetBrains released ReSharper for Visual Studio Code, Cursor, and Google Antigravity. The 2026.1 release on March 30 followed up with performance monitoring and tighter integration.

What you get

The extension brings the core ReSharper experience into any editor that speaks the VS Code extension API:

After you install the extension and open a folder, ReSharper detects .sln, .slnx, .slnf, or standalone .csproj files automatically. No manual configuration needed.

The licensing angle

JetBrains made this free for non-commercial use. That covers open-source contributions, learning, content creation, and hobby projects. Commercial teams need a ReSharper or dotUltimate license, the same one that covers the Visual Studio extension.

A quick test drive

Install from the VS Code Marketplace, then open any C# solution:

code my-project/

ReSharper indexes the solution and starts surfacing inspections immediately. Try the Command Palette (Ctrl+Shift+P) and type “ReSharper” to see available actions, or right-click any symbol for the refactoring menu.

A quick way to verify it is working:

// ReSharper will flag this with "Use collection expression" in C# 12+
var items = new List<string> { "a", "b", "c" };

If you see the suggestion to convert to ["a", "b", "c"], the analysis engine is running.

Who this is for

Cursor users writing C# now get first-class analysis without leaving their AI-native editor. VS Code users who avoided Rider because of cost or preference get the same inspection depth ReSharper has offered Visual Studio users for two decades. And OSS maintainers get it all for free.

The full announcement post covers installation details and known limitations.

< Back