Move TaskExecutor and TaskExecutorOptions in ConsoleInterface

This commit is contained in:
Denis-Cosmin Nutiu 2022-01-26 20:58:59 +02:00
parent a6cc6a59bb
commit e4bc3fafe2
3 changed files with 6 additions and 6 deletions

View file

@ -11,10 +11,10 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0"/> <PackageReference Include="CommandLineParser" Version="2.8.0" />
<ProjectReference Include="..\ImageCore\ImageCore.csproj"/> <ProjectReference Include="..\ImageCore\ImageCore.csproj" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0"/> <PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0"/> <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View file

@ -8,7 +8,7 @@ using ImageMagick;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions; using Microsoft.Extensions.Logging.Abstractions;
namespace Image namespace ConsoleInterface
{ {
/// <summary> /// <summary>
/// TaskExecutor is a helper class for executing tasks in parallel. /// TaskExecutor is a helper class for executing tasks in parallel.

View file

@ -1,7 +1,7 @@
using System; using System;
using Image.Output; using Image.Output;
namespace Image namespace ConsoleInterface
{ {
/// <summary> /// <summary>
/// TaskExecutorOptions is a class containing various parameters for the <see cref="TaskExecutor" /> class. /// TaskExecutorOptions is a class containing various parameters for the <see cref="TaskExecutor" /> class.