using Microsoft.WindowsAPICodePack.Shell; //v2.12.0.2
namespace WinCopies.Bug.Net7;
internal static class Program
{
static void Main()
{
string file = "TEST.docx";
using var shell = ShellFile.FromFilePath(file);
string[]? authors = shell.Properties.System.Author.Value; //TODO bug
}
}