This question is locked. New answers and comments are not allowed.
I would like JustCode to format my multi-line statements like so:
But instead it is formatting it like this:
Which settings, exactly, do I set to make it do this?
List<InventoryHistory> inspectionInventoryHistories = _context.GetAllInventoryHistories(_activity.Id) .OrderByDescending(ih => ih.Inventory.Type.SortOrder) .ThenBy(ih => ih.Inventory.Type.Value) .ToList();But instead it is formatting it like this:
List<InventoryHistory> inspectionInventoryHistories = _context.GetAllInventoryHistories(_activity.Id) .OrderByDescending(ih => ih.Inventory.Type.SortOrder) .ThenBy(ih => ih.Inventory.Type.Value) .ToList();Which settings, exactly, do I set to make it do this?