diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 67322957..aabb059c 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "csharpier": { - "version": "0.29.1", + "version": "0.29.2", "commands": [ "dotnet-csharpier" ], diff --git a/examples/dotnet/Program.cs b/examples/dotnet/Program.cs index bb889594..2af54635 100644 --- a/examples/dotnet/Program.cs +++ b/examples/dotnet/Program.cs @@ -1,4 +1,3 @@ - namespace ConsoleApp { using System; @@ -48,7 +47,7 @@ private static string GetCompeFromUser() Console.Write("Buscar COMPE (3 dígitos): "); compe = Console.ReadLine(); } while (!IsValidCompe(compe)); - + return compe; }