Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable ReSharper property code autocomplete/code snippet

In Visual Studio if you type 'prop' and then double tap the 'tab' key it adds a property code snippet.

I used to use the default one in Visual Studio all the time but since installing ReSharper it's overridden it with a ReSharper snippet that drives me insane because it works in a weird way that just doesn't work for me.

I want to switch back to the VS default one but can't work out how to disable it and switch back. Does anyone know how?

like image 975
Ben Thomson Avatar asked Sep 15 '25 02:09

Ben Thomson


1 Answers

Resharper uses 'Live Templates' which override VS snippets if they use the same shortcut.

Using Resharper 2017.1, to disable a specific live template, go to the menu ReSharper > Tools > Template Explorer...

Then in the C# scope, find and untick 'prop'.

You may need to restart Visual Studio for the change to take effect.

like image 113
Boris Roux Avatar answered Sep 17 '25 20:09

Boris Roux