Youssef Victor
Youssef Victor
> Lets not merge this until we get confirmation that this is actually the correct behavior. There seems to be some belief that this is a spec defect @jmarolf @jcouv...
@sharwell @mavasani @CyrusNajmabadi My initial thoughts on this is it will be divided into two parts: - Compiler: Reports a hidden diagnostic for parsing/syntax errors. This diagnostic will be used...
I was just searching about this until I came here. Not only for `dotnet format`, but for enforcing IDE0055 on build as well.
This may be due to how DP default values work in WinUI. Whenever a default value needs to be read, `DependencyProperty::GetDefaultValue` is called. For Foreground DPs specifically, that's calculated from...
`VisualContentRenderer::RenderShape` has this code: ```cpp const KnownTypeIndex typeIndex = pShapeElement->GetTypeIndex(); switch (typeIndex) { case KnownTypeIndex::Rectangle: case KnownTypeIndex::Ellipse: case KnownTypeIndex::Line: case KnownTypeIndex::Path: case KnownTypeIndex::Polygon: case KnownTypeIndex::Polyline: IFC_RETURN(pShapeElement->Render(this, &sprite)); break; default: //...
@daveMueller Any update here?
I had a bit of discussion with @MarcoRossignoli on this. Coverlet should only support MTP via a platform extension, and not via MSBuild integration.
@easy28 IMO, it's in general not a good idea to alter "clip-path" yourself. For example, if we implemented https://github.com/unoplatform/uno/issues/13782, then our own layout clipping will be competing on the same...
Note to self: The following properties for `SynthesizedBackingFieldSymbol` needs to be revised: - DeclaringSyntaxReferences (should it remain empty or return the first usage of `field` keyword?) - IsImplicitlyDeclared (should it...
There are interesting scenarios around overriding virtual properties. ```csharp public class Base { public virtual int P1 { get; set; } public virtual int P2 { get; set; } public...