Redo Reformat and cleanup.

Rider EAP was having a bug interpreting .editorconfig that didn't generate the code style as we wanted.
This is now done with Rider-stable.
This commit is contained in:
2023-10-04 17:34:36 +01:00
parent d3efb58222
commit acbc11af95
67 changed files with 1483 additions and 1383 deletions

View File

@@ -193,7 +193,8 @@ public static class CDTextOnLeadIn
else
{
sb.AppendFormat(Localization.CD_Text_pack_contains_performer_for_track_0,
descriptor.HeaderID2).AppendLine();
descriptor.HeaderID2).
AppendLine();
}
break;
@@ -206,7 +207,8 @@ public static class CDTextOnLeadIn
else
{
sb.AppendFormat(Localization.CD_Text_pack_contains_songwriter_for_track_0,
descriptor.HeaderID2).AppendLine();
descriptor.HeaderID2).
AppendLine();
}
break;
@@ -229,7 +231,8 @@ public static class CDTextOnLeadIn
else
{
sb.AppendFormat(Localization.CD_Text_pack_contains_arranger_for_track_0,
descriptor.HeaderID2).AppendLine();
descriptor.HeaderID2).
AppendLine();
}
break;
@@ -242,7 +245,8 @@ public static class CDTextOnLeadIn
else
{
sb.AppendFormat(Localization.CD_Text_pack_contains_content_provider_message_for_track_0,
descriptor.HeaderID2).AppendLine();
descriptor.HeaderID2).
AppendLine();
}
break;
@@ -330,7 +334,8 @@ public static class CDTextOnLeadIn
sb.AppendFormat(Localization.Text_field_0,
StringHandlers.CToString(descriptor.TextDataField,
Encoding.GetEncoding("iso-8859-1"))).AppendLine();
Encoding.GetEncoding("iso-8859-1"))).
AppendLine();
break;
}
@@ -338,7 +343,8 @@ public static class CDTextOnLeadIn
default:
{
sb.AppendFormat(Localization.Binary_contents_0,
PrintHex.ByteArrayToHexArrayString(descriptor.TextDataField, 28)).AppendLine();
PrintHex.ByteArrayToHexArrayString(descriptor.TextDataField, 28)).
AppendLine();
break;
}