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:
@@ -51,20 +51,26 @@ public class LocalJsonProviderTests : IDisposable
|
||||
Value = 0.250,
|
||||
Kerf = 0.012,
|
||||
AssistGas = "O2",
|
||||
LeadIn = new LeadConfig { Type = "Arc", Length = 0.25, Angle = 90.0, Radius = 0.125 },
|
||||
LeadIn = new LeadConfig
|
||||
{
|
||||
Type = "Arc",
|
||||
Length = 0.25,
|
||||
Angle = 90.0,
|
||||
Radius = 0.125,
|
||||
},
|
||||
LeadOut = new LeadConfig { Type = "Line", Length = 0.125 },
|
||||
CutOff = new CutOffConfig
|
||||
{
|
||||
PartClearance = 0.5,
|
||||
Overtravel = 0.25,
|
||||
Direction = "AwayFromOrigin",
|
||||
MinSegmentLength = 1.0
|
||||
MinSegmentLength = 1.0,
|
||||
},
|
||||
PlateSizes = new List<string> { "60x120", "48x96" }
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
PlateSizes = new List<string> { "60x120", "48x96" },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
provider.SaveMachine(machine);
|
||||
|
||||
@@ -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