Tewr
Tewr
I'm sure I stumbled over it when reading the source code of the mono wrapper and the blazor init code. When I get the time I can look into it,...
I think that with a certain investment it might be possible to debug the c# inside chrome. To get actual c# debugging in visual studio I'm guessing the price is...
@ivan-prodanov That is awesome news. It would be useful for the consumers of this component if you could manage to write a small guide on how to achieve this -...
Hello, thank you for your question. What you need for this to work is a persistent file system. I can't find any info on this, other than that it used...
This is probably related to trimming, I don't think there is any trimming going on before publish
Confirmed trimmer problem. Adding `false` to the top level project makes publishing work correctly. I'm suspecting more agressive trimmer defaults in the publish configuration in .net6. I'll try to come...
From https://docs.microsoft.com/en-us/dotnet/core/deploying/trimming/trimming-options: > The default TrimMode for Microsoft.NET.Sdk is link in .NET 6+, and copyused in previous versions. So to still use trimming, but a lot less aggressively, I've successfully...
No I would be very suprised if that worked out of the box, AOT being very reflection-sensitive and I'm not even sure if the bootloader looks the same when using...
So I've been debugging AOT build, it's horribly slow to iterate on, as each rebuild takes about 15 mins. I've specified all dependencies to be sure that it's not a...
System.text.json has a source code generator mode which does not use reflection, this is what I was thinking of. But indeed, the core example does not use any serializer and...