Given the following code:
var x = new myObject() {
prop3 = 8,
prop1 = 5,
prop2 = 6
}
Ideally, I would like to use ReSharper or built-in IDE features to sort the properties above so that they appear like this:
var x = new myObject() {
prop1 = 5,
prop2 = 6,
prop3 = 8
}
Outside of that, I'd be open to a lightweight extension--CodeMaid was way too heavy and overlaps with too many ReSharper functions.