Jonathan Peppers

Results 525 comments of Jonathan Peppers

@rogihee your case sounds different: using an animation + inside navigation bar. Could you file a new issue with a code example?

In some layouts you should try setting `HeightRequest` or `WidthRequest`. The problem is a conflict in how Glide and Xamarin.Forms work: https://github.com/jonathanpeppers/glidex/issues/10#issuecomment-433109852

@thewoodknight you might implement your own `IGlideHandler` to do this, see: https://github.com/jonathanpeppers/glidex/issues/89#issuecomment-790635408

Can you post a code example of your C#? I did this maybe two years ago... only thing I remember taking out was a call to a zlib native library...

Sorry, I don't have access to this repo any longer since I do not work for Hitcents. I suspect this project will be abandoned. I don't have a way to...

@mattleibow do we normally get the Tizen packages added to `dotnet-public`? ``` Workload installation failed: samsung.tizen.sdk::7.0.100-rc.2.24 is not found in NuGet feeds [https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json;https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json;https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json;https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet7/nuget/v3/index.json;https://pkgs.dev.azure.com/xamarin/public/_packaging/SkiaSharp/nuget/v3/index.json;https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-runtime-531f715f/nuget/v3/index.json".](https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json;https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json;https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json;https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet7/nuget/v3/index.json;https://pkgs.dev.azure.com/xamarin/public/_packaging/SkiaSharp/nuget/v3/index.json;https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-runtime-531f715f/nuget/v3/index.json%22.) /Users/builder/azdo/_work/2/s/src/DotNet/DotNet.csproj(170,5): error MSB3073: The command ""/Users/builder/azdo/_work/2/s/bin/dotnet/dotnet" workload...

@rolfbjarne I ignored `CA1416`, and updated to latest xamarin-macios builds. This is now hitting: ``` /Users/builder/azdo/_work/3/s/bin/dotnet/packs/Microsoft.MacCatalyst.Sdk/15.4.1153-rc.2/targets/Xamarin.Shared.Sdk.targets(371,3): error : Unable to merge the file 'Contents/Resources/Assets.car', it's different between the input app...

@rolfbjarne I don't think that fix for Resizetizer helped, here is an new log: [maui_DotNet_net7_0-Release-Build-dotnet.zip](https://github.com/dotnet/maui/files/9578257/maui_DotNet_net7_0-Release-Build-dotnet.zip) The other issue on this one is: ``` D:\a\_work\1\s\bin\dotnet\packs\Microsoft.MacCatalyst.Sdk\15.4.1153-rc.2\targets\Xamarin.Shared.Sdk.targets(758,3): error MSB4018: The "Xamarin.MacDev.Tasks.ILStrip" task failed...

I wouldn't recommend using `LinkAll`, unless you're willing to work through missing types. You will likely need to preserve things as mentioned here: https://github.com/dotnet/linker/blob/main/docs/data-formats.md

@TamerIrdais do you have XamlCompilation turned off? https://learn.microsoft.com/en-us/dotnet/maui/xaml/xamlc The linker should see your use of any types in `Source.xml` and `Colors.xml`, if XamlC is turned on. Why is this a...