Created
September 17, 2024 16:58
-
-
Save renatogroffe/13c95c58fdc64b8cfbca3e470654e8e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using ConsoleAppPartialMethod.Helpers; | |
using System.Runtime.InteropServices; | |
Console.WriteLine("***** Testes com .NET 8 + GeneratedRegexAttribute + Partial Method *****"); | |
Console.WriteLine($"Versao do .NET em uso: {RuntimeInformation | |
.FrameworkDescription} - Ambiente: {Environment.MachineName} - Kernel: {Environment | |
.OSVersion.VersionString}"); | |
Console.WriteLine(); | |
var selectedDatabases = new string[] { "sqlserver", "mongodb", "postgres", "redis", "mysql" }; | |
foreach (var opcao in selectedDatabases) | |
{ | |
var oldColor = Console.ForegroundColor; | |
if (ValidationHelpers.IsRelationalDatabase().IsMatch(opcao)) | |
{ | |
Console.ForegroundColor = ConsoleColor.Cyan; | |
Console.WriteLine($"{opcao} = alternativa valida"); | |
} | |
else | |
{ | |
Console.ForegroundColor = ConsoleColor.Red; | |
Console.WriteLine($"{opcao} = alternativa invalida"); | |
} | |
Console.ForegroundColor = oldColor; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment