diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json
index 9e8f2784c..5d78a2dee 100644
--- a/.config/dotnet-tools.json
+++ b/.config/dotnet-tools.json
@@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"csharpier": {
- "version": "0.26.7",
+ "version": "0.27.0",
"commands": [
"dotnet-csharpier"
]
diff --git a/Src/VTEX/Transport/PCIPayment.cs b/Src/VTEX/Transport/PCIPayment.cs
index ca484c78e..5fd482b5d 100644
--- a/Src/VTEX/Transport/PCIPayment.cs
+++ b/Src/VTEX/Transport/PCIPayment.cs
@@ -35,8 +35,8 @@ public sealed class PCIPayment
/// Name of the field.
/// PciPaymentField.
public PCIPaymentField GetFieldByName([Localizable(false)] string fieldName) =>
- Fields.SingleOrDefault(
- f => f.Name.Equals(fieldName, StringComparison.InvariantCultureIgnoreCase)
+ Fields.SingleOrDefault(f =>
+ f.Name.Equals(fieldName, StringComparison.InvariantCultureIgnoreCase)
);
#endregion