// ReSharper disable ClassNeverInstantiated.Global namespace TeamCity.Docker { using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; using Generic; using global::Docker.DotNet; using global::Docker.DotNet.Models; using IoC; using Model; internal class BuildCommand: ICommand { [NotNull] private readonly ILogger _logger; [NotNull] private readonly IMessageLogger _messageLogger; [NotNull] private readonly CancellationTokenSource _cancellationTokenSource; [NotNull] private readonly IFileSystem _fileSystem; [NotNull] private readonly IPathService _pathService; [NotNull] private readonly IBuildOptions _options; [NotNull] private readonly IConfigurationExplorer _configurationExplorer; [NotNull] private readonly IFactory, IEnumerable