Jonathan Peppers

Results 525 comments of Jonathan Peppers

This needs changes like: https://github.com/dotnet/maui/blob/c1aac2eec3385625b2bc7e43afe30ea23ca6ad80/src/Controls/samples/Controls.Sample/Maui.Controls.Sample.csproj#L11-L12 I did this in several projects in f830ec0b1b6b59bea036c8b59bdf2a7399fe0530. This is this issue: https://github.com/xamarin/xamarin-macios/issues/17497 Is AzDO down? ![image](https://user-images.githubusercontent.com/840039/218180418-1ba79c49-4d88-4054-8ec3-2cdee91e157c.png) I wanted to look at the latest log...

I think it should work now? Just like the changes we have in main?

@mattleibow just don't do this for Android, because it disables the JIT. iOS/MacCatalyst can't JIT, so the only downside is whatever the increase to app size. Plus there might be...

> Rightly or wrongly, we as .NET developers have been trained to think that building in release mode is intrinsically safe The trimmer does output the message: ``` Optimizing assemblies...

I debugged this app quite a bit today, I believe there are two core problems here: 1. Something XAML Hot Reload causes. Things worked better if I do: ![image](https://user-images.githubusercontent.com/840039/222325505-e6f61659-3ee8-4502-8a54-2fdc40ae5503.png) I...

I was testing in Debug mode, so I could do things like put breakpoints in MAUI.

@alfamizar in the example above, you could avoid using `{StaticResource}` including `Style`, `Brush`, etc. in a `DataTemplate`? Basically just hardcode values instead.

@drasticactions I think this source generator needs to emit `EditorBrowsableState.Never` on the above types: https://github.com/dotnet/maui/blob/main/src/Controls/src/SourceGen/CodeBehindGenerator.cs They come from `Styles.xaml` and `Colors.xaml`.