i have a very simple c# app which uses EPPlus 4.1.1 to modify a simple excel spreadsheet file:
FileInfo fileInfo = new FileInfo(@"D:\file.xlsx");
ExcelPackage package = new ExcelPackage(fileInfo);
ExcelWorksheet workSheet = package.Workbook.Worksheets["Sheet1"];
// mod logic
package.Save();
everything seems to work swimmingly. once my app completes its execution, i open the modified spreadsheet file from the file browser via Excel to confirm that modifications were executed properly. the problem is that once i attempt to close Excel, it prompts me to save. Now, whether i save or dont, the modifications remain. Yet Excel continues to prompt for save until i choose to save. i take it that perhaps there is a missing step or two in the code thats causing this. any ideas? thank you!