Index: Migration/Console/src/Migration.Console/ConsoleHelper.cs =================================================================== diff -u -r537365058e32a819778930017608a6b874c89f02 -r64104dbd1703c0a2eadefd2a7833291eaad7d2d5 --- Migration/Console/src/Migration.Console/ConsoleHelper.cs (.../ConsoleHelper.cs) (revision 537365058e32a819778930017608a6b874c89f02) +++ Migration/Console/src/Migration.Console/ConsoleHelper.cs (.../ConsoleHelper.cs) (revision 64104dbd1703c0a2eadefd2a7833291eaad7d2d5) @@ -46,10 +46,12 @@ { throw new ArgumentNullException(nameof(format)); } + if (args == null) { throw new ArgumentNullException(nameof(args)); } + SystemConsole.ForegroundColor = ConsoleColor.Red; SystemConsole.WriteLine(format, args); SystemConsole.ResetColor(); @@ -78,6 +80,7 @@ { throw new ArgumentNullException(nameof(format)); } + if (args == null) { throw new ArgumentNullException(nameof(args));