C# Code formtting - Force single inline body along with braces on same line

Is there a way to configure resharper to format C# single inline body to this

/ From this    
if (Condition)
{
   Execute(); 
}


// to this   
if (Condition)
{ Execute(); }
1

Please sign in to leave a comment.