Matt Johnson-Pint
Matt Johnson-Pint
@simoncropp - want to take a first stab at a draft?
Hi. I also have this issue. It does work if you edit the request to remove the quotation marks, but the UI will put them back if you use the...
Looks like @jtenner has been away from GitHub for some time now. No worries. I have a workaround. I just didn't want to this to get lost, for whenever he...
@dordille - It would be helpful indeed if you could add an appropriate license. Thanks.
Yes, that's exactly correct. .NET is using ICU for the mapping. If ICU is not available then the mapping doesn't work. ICU has been available on Windows since Windows 10...
In other words, in a C#/WinRT app (aka UWP), I can do: ```csharp string ianaTzId = new Windows.Globalization.Calendar().GetTimeZone(); ``` Or from a PowerShell command line: ```pwsh [Windows.Globalization.Calendar,Windows.Globalization,ContentType=WindowsRuntime]::New().GetTimeZone() ``` Similar functions...
Also - just FYI - I don't work at Microsoft anymore, and all of that is public info.
Unfortunately, I don't have any relevant contacts responsible for time zones at Microsoft anymore. The only signal I have is from the [MS DST Blog](https://techcommunity.microsoft.com/t5/daylight-saving-time-time-zone/bg-p/DSTBlog), and I don't have a...
Any update here?
I encountered the same issue, and found that the following fixed it: ``` go get google.golang.org/genproto/googleapis/api go mod tidy ```