I have deployed my asp.net core application in azure linux. I am trying to convert UTC time to 'Central Europe Standard Time'. But, I am getting the following exception. In my local no issues, but I am getting issue after deployment.
The time zone ID 'Central Europe Standard Time' was not found on the local computer. Could not find file '/usr/share/zoneinfo/Central Europe Standard Time'.
TimeZoneInfo cstZone = TimeZoneInfo.FindSystemTimeZoneById("Central Europe Standard Time");
var cstTime = TimeZoneInfo.ConvertTimeFromUtc(utcDateTime, cstZone);