Allow brace wrapping in C# property accessors to be controlled by configuration options.
Add new tests and revert old test results for Microsoft style to their previous state (as intended).
FormatStyle.BraceWrapping.AfterFunction = true; will change automatic property formatting from
Type MyType { get; set }
to
Type MyType { get; set }