Formatting
This commit is contained in:
parent
80fcaa6fd0
commit
a466efbb27
3 changed files with 22 additions and 21 deletions
|
|
@ -15,7 +15,10 @@ using Microsoft.Extensions.Logging;
|
|||
namespace MaddoShared
|
||||
{
|
||||
[SuppressMessage("Interoperability", "CA1416:Validate platform compatibility")]
|
||||
public class ImageCreationStuff(ILogger<ImageCreationStuff> logger, PicSettings picSettings, ImageCreatorSharp imageCreatorService)
|
||||
public class ImageCreationStuff(
|
||||
ILogger<ImageCreationStuff> logger,
|
||||
PicSettings picSettings,
|
||||
ImageCreatorSharp imageCreatorService)
|
||||
{
|
||||
public class Options
|
||||
{
|
||||
|
|
@ -132,7 +135,6 @@ namespace MaddoShared
|
|||
{
|
||||
logger.LogError(e, "Error in disposing the logo");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private List<FileData> GetFilesToProcess(Options options)
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ namespace ImageCatalog_2
|
|||
{
|
||||
public class DataModel : ViewModelBase
|
||||
{
|
||||
|
||||
public ICommand TestCommand { get; }
|
||||
|
||||
public ICommand AsyncTestCommand { get; }
|
||||
|
|
@ -23,7 +22,8 @@ namespace ImageCatalog_2
|
|||
public ICommand ProcessImagesCommand { get; }
|
||||
|
||||
private readonly ITestService _service;
|
||||
private readonly ILogger<DataModel> _logger;
|
||||
private readonly ILogger<DataModel> _logger;
|
||||
|
||||
public DataModel(ITestService testService, ILogger<DataModel> logger)
|
||||
{
|
||||
_service = testService;
|
||||
|
|
@ -61,6 +61,7 @@ namespace ImageCatalog_2
|
|||
}
|
||||
|
||||
private string _destinationPath;
|
||||
|
||||
public string DestinationPath
|
||||
{
|
||||
get => _destinationPath;
|
||||
|
|
@ -84,6 +85,7 @@ namespace ImageCatalog_2
|
|||
}
|
||||
|
||||
private string _verticalText;
|
||||
|
||||
public string VerticalText
|
||||
{
|
||||
get => _verticalText;
|
||||
|
|
@ -145,7 +147,6 @@ namespace ImageCatalog_2
|
|||
|
||||
private async Task ProcessImages()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private async Task CancelOperation()
|
||||
|
|
@ -162,6 +163,5 @@ namespace ImageCatalog_2
|
|||
_logger.LogInformation("Ignora questo errore");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
@ -896,8 +896,7 @@ public partial class MainForm
|
|||
{
|
||||
_logger.LogInformation("Avvio elaborazione...");
|
||||
lockUI();
|
||||
// Dim timeStart As Date
|
||||
// Dim timeStop As Date
|
||||
|
||||
Model.MainToken?.Dispose();
|
||||
Model.MainToken = new CancellationTokenSource();
|
||||
var token = Model.MainToken.Token;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue