Skip to content

Commit

Permalink
Updated nuget packages
Browse files Browse the repository at this point in the history
  • Loading branch information
devedse committed Jul 26, 2020
1 parent 642d9a1 commit ec905fd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions WebOptimizationProject.Runner/WopProgressReporter.cs
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
using DeveImageOptimizer.State;
using System;
using System.Threading;
using System.Threading.Tasks;

namespace WebOptimizationProject.Runner
{
public class WopProgressReporter : IProgressReporter
{
public void OptimizableFileProgressUpdated(OptimizableFile optimizableFile)
public Task OptimizableFileProgressUpdated(OptimizableFile optimizableFile)
{
Console.WriteLine($"{Thread.CurrentThread.ManagedThreadId} File Optimized: {optimizableFile}");

return Task.CompletedTask;
}

public void TotalFileCountDiscovered(int count)
public Task TotalFileCountDiscovered(int count)
{
Console.WriteLine($"{Thread.CurrentThread.ManagedThreadId} Total file count: {count}");

return Task.CompletedTask;
}
}
}
2 changes: 1 addition & 1 deletion WebOptimizationProject/WebOptimizationProject.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<ItemGroup>
<PackageReference Include="AdysTech.CredentialManager" Version="2.2.0" />
<PackageReference Include="DeveImageOptimizer" Version="1.0.345" />
<PackageReference Include="DeveImageOptimizer" Version="1.0.346" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Octokit" Version="0.48.0" />
</ItemGroup>
Expand Down

0 comments on commit ec905fd

Please sign in to comment.