Print the time for compilation without verbose
This commit is contained in:
parent
a887a984f5
commit
db6464356c
1 changed files with 5 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Diagnostics;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
|
@ -158,6 +159,7 @@ namespace Microsoft.DotNet.Tools.Compiler
|
||||||
}
|
}
|
||||||
|
|
||||||
Reporter.Output.WriteLine($"Compiling {context.RootProject.Identity.Name.Yellow()} for {context.TargetFramework.DotNetFrameworkName.Yellow()}");
|
Reporter.Output.WriteLine($"Compiling {context.RootProject.Identity.Name.Yellow()} for {context.TargetFramework.DotNetFrameworkName.Yellow()}");
|
||||||
|
var sw = Stopwatch.StartNew();
|
||||||
|
|
||||||
// Dump dependency data
|
// Dump dependency data
|
||||||
// TODO: Turn on only if verbose, we can look at the response
|
// TODO: Turn on only if verbose, we can look at the response
|
||||||
|
@ -264,6 +266,9 @@ namespace Microsoft.DotNet.Tools.Compiler
|
||||||
|
|
||||||
PrintSummary(success, diagnostics);
|
PrintSummary(success, diagnostics);
|
||||||
|
|
||||||
|
Reporter.Output.WriteLine($"Time elapsed {sw.Elapsed}");
|
||||||
|
Reporter.Output.WriteLine();
|
||||||
|
|
||||||
return success;
|
return success;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue