Display the path being processed in Check since multiple are allowed

This commit is contained in:
Matt Nadareski
2026-03-21 10:29:44 -04:00
parent 1e0b24e6f5
commit 1a43bd4475
3 changed files with 5 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
### WIP (xxxx-xx-xx)
- Display the path being processed in Check since multiple are allowed
### 3.7.0 (2026-03-20)
- Check for null or empty layerbreak arrays

View File

@@ -111,6 +111,7 @@ namespace MPF.Check.Features
{
// Get the full file path
string filepath = Path.GetFullPath(Inputs[i].Trim('"'));
Console.WriteLine($"Processing input path: {filepath}");
// Now populate an environment
Drive? drive = null;

View File

@@ -1,8 +1,5 @@
using System;
using System.Collections.Generic;
#if NET40
using System.Threading.Tasks;
#endif
using MPF.Check.Features;
using MPF.Frontend.Features;
using MPF.Frontend.Tools;