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
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