WaltRitscher / WhatsNewVs2017

2 stars 13 forks source link

Dates issue in EventRepository.cs #4

Open eliassal opened 6 years ago

eliassal commented 6 years ago

Walt, I managed to make the app works after editing the csprj file and got rid of the nugget packages issues. When I triggered debugging in Chrome, US dates format were generating errors (my regional settings are FRench), so I needed to change EventDate = DateTime.Parse("4/23/2016") to EventDate = DateTime.Parse("4/23/2016") EventDate = DateTime.Parse("3/16/2016"),EventDate = DateTime.Parse("16/3/2016"),

then applications displayed correctly in Chrome. How this can be fixed in whatever environment app might run? Thanks

eliassal commented 6 years ago

Also, when steeping in the JS code, hovering on rate, denominator, payment all have "undefined" status, no calculations are getting done.