style: apply CSharpier formatting to all C# sources
Repo-wide sweep with the pinned CSharpier 1.3.0 tool. Whitespace and line-wrapping only; OpenNest.Engine.Tests (109) and OpenNest.IO.Tests pass after reformat, full solution builds 0 errors. Added .csharpierignore so csproj/config XML keeps its existing layout (CSharpier's XML wrapping churns attributes with zero benefit). Formatting is now enforceable: dotnet csharpier check . passes.
This commit is contained in:
@@ -28,7 +28,7 @@ public class MachineConfigTests
|
||||
AssistGas = "O2",
|
||||
LeadIn = new LeadConfig { Type = "Arc", Radius = 0.25 },
|
||||
LeadOut = new LeadConfig { Type = "Line", Length = 0.125 },
|
||||
PlateSizes = new List<string> { "60x120", "48x96" }
|
||||
PlateSizes = new List<string> { "60x120", "48x96" },
|
||||
},
|
||||
new()
|
||||
{
|
||||
@@ -37,9 +37,9 @@ public class MachineConfigTests
|
||||
AssistGas = "O2",
|
||||
LeadIn = new LeadConfig { Type = "Arc", Radius = 0.375 },
|
||||
LeadOut = new LeadConfig { Type = "Line", Length = 0.25 },
|
||||
PlateSizes = new List<string> { "60x120" }
|
||||
}
|
||||
}
|
||||
PlateSizes = new List<string> { "60x120" },
|
||||
},
|
||||
},
|
||||
},
|
||||
new()
|
||||
{
|
||||
@@ -52,11 +52,11 @@ public class MachineConfigTests
|
||||
{
|
||||
Value = 0.250,
|
||||
Kerf = 0.014,
|
||||
AssistGas = "N2"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
AssistGas = "N2",
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user