Skip to content

Commit

Permalink
dll's failing the check are listed in red
Browse files Browse the repository at this point in the history
  • Loading branch information
gunnim committed Dec 23, 2017
1 parent a3ba629 commit 46d1afe
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions CheckDebugFlags/Program.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
using System;
using System.Reflection;
using System.IO;
using Microsoft.Test.CommandLineParsing;
using Microsoft.Test.CommandLineParsing;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Reflection;

namespace CheckDebugFlags
{
Expand Down Expand Up @@ -82,6 +81,11 @@ static int Main(string[] args)
catch { }
}

if (Console.ForegroundColor == ConsoleColor.Gray)
{
Console.ForegroundColor = ConsoleColor.Red;
}

if (treatAllDistinct)
{
foreach (var assembly in assemblyList)
Expand Down

0 comments on commit 46d1afe

Please sign in to comment.