Closed am11 closed 9 years ago
@SLaks, the code formatting of Rebarcer's cs files is JavaScript-like and tabbed-indentation:
[ImportingConstructor]
public SettingsPersister(SVsServiceProvider sp, ILogger logger) {
this.logger = logger;
dte = (DTE)sp.GetService(typeof(DTE));
}
Are these your preferred settings for C# code base?
Yes. (that's why I wrote this extension)
I chose XML to be compatible with the existing VSSettings format, as detailed in the Readme.
Having two formats would be a bad idea; the whole point of this is to standardize settings in source control, and having two equivalent files is a recipe for trouble.
Save settings in JSON format (replacing XML or optional; in addition to XML).