Is there a way to change the code generated by a quick-fix in Resharper? It doesn't seem to be in the live templates.
I'd like the 'Create Property' quickfix for an unrecognized symbol to generate
public int MyProperty { get; set; }
Instead of:
protected int MyProperty
{
get { throw new NotImplementedException(); }
set { throw new NotImplementedException(); }
}