1
0

Add requires, exclusive and recommended fragments interpreted by the builder

This commit is contained in:
nicolas.dorier
2019-11-06 23:13:09 +09:00
parent 12a59afa07
commit 9d4bbcb0f3
18 changed files with 217 additions and 34 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace DockerGenerator
{
public static class ConsoleUtils
{
public static void WriteLine(string message, ConsoleColor color)
{
var old = Console.ForegroundColor;
Console.ForegroundColor = color;
Console.WriteLine(message);
Console.ForegroundColor = old;
}
}
}