File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . Collections . Generic ;
3
+ using System . Diagnostics ;
3
4
using System . IO ;
4
5
using System . Linq ;
5
6
using System . Net ;
@@ -169,6 +170,8 @@ CommandOption maxConcurrency
169
170
{
170
171
FileInfo output ;
171
172
173
+ var sw = Stopwatch . StartNew ( ) ;
174
+
172
175
// Special case if there's only one input file and the output has a value, treat it as a file
173
176
if ( inputFiles . Count == 1 && outputFile . HasValue ( ) )
174
177
{
@@ -226,7 +229,7 @@ CommandOption maxConcurrency
226
229
using var fs = new FileStream ( output . FullName , FileMode . Create ) ;
227
230
str . CopyTo ( fs ) ;
228
231
229
- signCommandLineApplication . Out . WriteLine ( $ "Successfully signed '{ output . FullName } '") ;
232
+ signCommandLineApplication . Out . WriteLine ( $ "Successfully signed '{ output . FullName } ' in { sw . ElapsedMilliseconds } ms ") ;
230
233
} ) ;
231
234
232
235
You can’t perform that action at this time.
0 commit comments