Skip to content

Commit 35d8de7

Browse files
committed
feat: change Delivered years expected format from 'yy' to 'yyyy'
1 parent ea4c5ae commit 35d8de7

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

SpreadsheetsIntegration/MonteCarloSimulation.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,10 @@ private class TaskRecordMap : ClassMap<TaskRecord>
8585
{
8686
public TaskRecordMap()
8787
{
88-
Map(m => m.Delivered).Name("Delivered")
89-
.TypeConverterOption.Format("dd/MM/yy HH:mm");
88+
Map(m => m.Delivered)
89+
.Name("Delivered")
90+
.TypeConverterOption
91+
.Format("dd/MM/yyyy HH:mm");
9092
}
9193
}
9294

SpreadsheetsIntegration/SpreadsheetsIntegration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<PropertyGroup>
1010
<PackageId>MonteCSharpSimulation</PackageId>
11-
<Version>0.4.0-alpha</Version>
11+
<Version>0.5.0-alpha</Version>
1212
<Authors>Xiphereal</Authors>
1313
<Description>A simple implementation of the Monte Carlo Simulation in C# for forecasting a bunch of task completion.</Description>
1414
<PackageTags>MonteCarloSimulation,Monte,Carlo,simulation,task,task completion,forecast,estimate,estimation</PackageTags>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Task;Started;Delivered
2-
Asdfasdf;17/11/24 00:18;17/11/24 00:21
3-
ffasdf;15/11/24 12:18;16/11/24 12:18
2+
Asdfasdf;17/11/2024 00:18;17/11/2024 00:21
3+
ffasdf;15/11/2024 12:18;16/11/2024 12:18
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Task;Started;Delivered
2-
Asdfasdf;17/11/24 00:18;
2+
Asdfasdf;17/11/2024 00:18;

0 commit comments

Comments
 (0)