Skip to content

Commit

Permalink
Added file extension as csv
Browse files Browse the repository at this point in the history
  • Loading branch information
Mazar-Shaik committed Nov 5, 2024
1 parent 095d955 commit dcd884b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EPR.Calculator.API/Exporter/CalcResultsExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private static void AppendCsvLine(StringBuilder csvContent, string label, string
}
private static string GetResultFileName(int runId)
{
return $"{runId}-{DateTime.Now:yyyy-MM-dd-HHmm}";
return $"{runId}-{DateTime.Now:yyyy-MM-dd-HHmm}.csv";
}
}
}

0 comments on commit dcd884b

Please sign in to comment.