Jeremy Price

Results 3 issues of Jeremy Price

In the example below, two lines appear one immediately after the other, ``` ``` That is, in the viewBox-associated coordinates, the lines are: ``` (0,0) to (5, 0) (10, 0)...

Microsoft.Windows.CsWinRT.targets defines a property [`CsWinRTAotExportsEnabled`](https://github.com/microsoft/CsWinRT/blob/staging/AOT/nuget/Microsoft.Windows.CsWinRT.targets#L26): ```msbuild true false ``` However, `PublishAot` being true does not indicate that a build was actually an NAOT build, instead it indicates that a publish...

bug
AOT

https://www.toptensoftware.com/richtextkit/basics claims that `\r\n` is normalized to `\n`, but doing something like ``` TextBlock tb = new TextBlock(); tb.AddText("X \n Y \r\n Z", style); ``` renders as ``` X Y□...