Using WordprocessingDocument to modify .docx files, but the Date modified of the file is always changed after disposing the file even if no changes are made.
I've tried to disable AutoSave - date is still modified.
This piece of code leads to change of the date
using(var document = WordprocessingDocument.Open(filePath, true, new OpenSettings { AutoSave = false }))
{
}
Is there any way to avoid changes to the Date modified of the file when no changes are actually made?
Env: NET Core 3.0, Open xml sdk, Nuget version 2.9.1